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/assets/Scene/GameScene.fire b/assets/Scene/GameScene.fire
index 43e5761..fddc311 100644
--- a/assets/Scene/GameScene.fire
+++ b/assets/Scene/GameScene.fire
@@ -17,7 +17,7 @@
"__id__": 2
},
{
- "__id__": 680
+ "__id__": 688
}
],
"_active": false,
@@ -81,25 +81,25 @@
"__id__": 7
},
{
- "__id__": 565
+ "__id__": 581
},
{
- "__id__": 670
+ "__id__": 678
}
],
"_active": true,
"_components": [
{
- "__id__": 676
+ "__id__": 684
},
{
- "__id__": 677
+ "__id__": 685
},
{
- "__id__": 678
+ "__id__": 686
},
{
- "__id__": 679
+ "__id__": 687
}
],
"_prefab": null,
@@ -357,13 +357,13 @@
"__id__": 11
},
{
- "__id__": 284
+ "__id__": 327
},
{
- "__id__": 305
+ "__id__": 281
},
{
- "__id__": 340
+ "__id__": 348
},
{
"__id__": 184
@@ -375,7 +375,7 @@
"_active": true,
"_components": [
{
- "__id__": 669
+ "__id__": 580
}
],
"_prefab": null,
@@ -571,7 +571,7 @@
"__id__": 32
},
{
- "__id__": 280
+ "__id__": 323
},
{
"__id__": 114
@@ -580,7 +580,7 @@
"_active": true,
"_components": [
{
- "__id__": 283
+ "__id__": 326
}
],
"_prefab": null,
@@ -1564,6 +1564,9 @@
"coinPop": {
"__id__": 184
},
+ "gameOverNode": {
+ "__id__": 280
+ },
"_id": "1e+NpmfM1ClafoWSY4VNW+"
},
{
@@ -13426,949 +13429,42 @@
},
{
"__type__": "cc.Node",
- "_name": "Ice",
+ "_name": "tween",
"_objFlags": 0,
"_parent": {
- "__id__": 11
- },
- "_children": [],
- "_active": false,
- "_components": [
- {
- "__id__": 281
- },
- {
- "__id__": 282
- }
- ],
- "_prefab": null,
- "_opacity": 0,
- "_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.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 280
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "f4ece38e-56e4-4940-a69b-230714b59704"
- },
- "_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__": 280
- },
- "_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
+ "__id__": 281
},
"_children": [
- {
- "__id__": 285
- },
{
"__id__": 289
},
- {
- "__id__": 291
- },
- {
- "__id__": 293
- },
- {
- "__id__": 295
- },
- {
- "__id__": 301
- }
- ],
- "_active": false,
- "_components": [
- {
- "__id__": 303
- },
- {
- "__id__": 304
- }
- ],
- "_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__": 284
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 286
- },
- {
- "__id__": 287
- },
- {
- "__id__": 288
- }
- ],
- "_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__": 285
- },
- "_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__": 285
- },
- "_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__": 285
- },
- "_enabled": true,
- "_id": "1e62ukhsJObKLFucCNzfwm"
- },
- {
- "__type__": "cc.Node",
- "_name": "bg",
- "_objFlags": 0,
- "_parent": {
- "__id__": 284
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 290
- }
- ],
- "_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__": 289
- },
- "_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__": 284
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 292
- }
- ],
- "_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__": 291
- },
- "_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__": 284
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 294
- }
- ],
- "_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__": 293
- },
- "_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__": 284
- },
- "_children": [
{
"__id__": 296
- }
- ],
- "_active": true,
- "_components": [
+ },
{
"__id__": 298
},
- {
- "__id__": 299
- }
- ],
- "_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__": 295
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 297
- }
- ],
- "_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__": 296
- },
- "_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__": 295
- },
- "_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__": 295
- },
- "_enabled": true,
- "_normalMaterial": null,
- "_grayMaterial": null,
- "duration": 0.1,
- "zoomScale": 1.1,
- "clickEvents": [
{
"__id__": 300
- }
- ],
- "_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__": 295
- },
- "_id": "2bhrCpcRxImqyWzBaIVVCd"
- },
- {
- "__type__": "cc.ClickEvent",
- "target": {
- "__id__": 284
- },
- "component": "",
- "_componentId": "7fe14dRFQZKSKKAoEn4S7OU",
- "handler": "clickBtn",
- "customEventData": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "New Sprite",
- "_objFlags": 0,
- "_parent": {
- "__id__": 284
- },
- "_children": [],
- "_active": true,
- "_components": [
+ },
{
"__id__": 302
+ },
+ {
+ "__id__": 309
+ },
+ {
+ "__id__": 314
+ },
+ {
+ "__id__": 318
+ },
+ {
+ "__id__": 320
}
],
+ "_active": true,
+ "_components": [],
"_prefab": null,
"_opacity": 255,
"_color": {
@@ -14380,8 +13476,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
- "width": 687,
- "height": 149
+ "width": 0,
+ "height": 0
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@@ -14393,7 +13489,7 @@
"ctor": "Float64Array",
"array": [
0,
- 629.244,
+ 0,
0,
0,
0,
@@ -14415,78 +13511,7 @@
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
- "_id": "e6WpUCjLxEbImooEZd+XYN"
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 301
- },
- "_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__": 284
- },
- "_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__": 284
- },
- "_enabled": true,
- "label": null,
- "text": "hello",
- "_id": "52hOic8rJHMIE0B+I9nWAm"
+ "_id": "24hcpQJAxIYohCd6FN/2wn"
},
{
"__type__": "cc.Node",
@@ -14497,34 +13522,19 @@
},
"_children": [
{
- "__id__": 306
+ "__id__": 282
},
{
- "__id__": 310
+ "__id__": 286
},
{
- "__id__": 312
- },
- {
- "__id__": 313
- },
- {
- "__id__": 315
- },
- {
- "__id__": 323
- },
- {
- "__id__": 330
- },
- {
- "__id__": 335
+ "__id__": 280
}
],
"_active": false,
"_components": [
{
- "__id__": 339
+ "__id__": 288
}
],
"_prefab": null,
@@ -14580,19 +13590,19 @@
"_name": "New Sprite(Splash)",
"_objFlags": 0,
"_parent": {
- "__id__": 305
+ "__id__": 281
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 307
+ "__id__": 283
},
{
- "__id__": 308
+ "__id__": 284
},
{
- "__id__": 309
+ "__id__": 285
}
],
"_prefab": null,
@@ -14648,7 +13658,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 306
+ "__id__": 282
},
"_enabled": true,
"_materials": [
@@ -14680,7 +13690,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 306
+ "__id__": 282
},
"_enabled": true,
"alignMode": 1,
@@ -14707,7 +13717,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 306
+ "__id__": 282
},
"_enabled": true,
"_id": "7aMdyhm41AyqFZMnIAtTUY"
@@ -14717,13 +13727,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 305
+ "__id__": 281
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 311
+ "__id__": 287
}
],
"_prefab": null,
@@ -14779,7 +13789,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 310
+ "__id__": 286
},
"_enabled": true,
"_materials": [
@@ -14807,181 +13817,51 @@
"_id": "1c15srvT9Kd6hNeVKfzapN"
},
{
- "__type__": "cc.Node",
- "_name": "level",
- "_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": [
- 19.978,
- 503.873,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1.2,
- 1.2,
- 2
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": "bbHzukwNlHsLQhws5aRmTn"
- },
- {
- "__type__": "cc.Node",
- "_name": "diguan",
- "_objFlags": 0,
- "_parent": {
- "__id__": 305
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 314
- }
- ],
- "_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,
- 2,
- 2,
- 1
- ]
- },
- "_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.Sprite",
+ "__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 313
+ "__id__": 281
},
"_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"
+ "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__": 305
+ "__id__": 280
},
"_children": [
{
- "__id__": 316
+ "__id__": 290
},
{
- "__id__": 318
- },
- {
- "__id__": 320
+ "__id__": 292
}
],
"_active": true,
"_components": [
{
- "__id__": 322
+ "__id__": 295
}
],
"_prefab": null,
@@ -15037,13 +13917,13 @@
"_name": "gongxiguoguan",
"_objFlags": 0,
"_parent": {
- "__id__": 315
+ "__id__": 289
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 317
+ "__id__": 291
}
],
"_prefab": null,
@@ -15099,7 +13979,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 316
+ "__id__": 290
},
"_enabled": true,
"_materials": [
@@ -15128,16 +14008,19 @@
},
{
"__type__": "cc.Node",
- "_name": "guang",
+ "_name": "cai",
"_objFlags": 0,
"_parent": {
- "__id__": 315
+ "__id__": 289
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 319
+ "__id__": 293
+ },
+ {
+ "__id__": 294
}
],
"_prefab": null,
@@ -15151,8 +14034,8 @@
},
"_contentSize": {
"__type__": "cc.Size",
- "width": 650,
- "height": 638
+ "width": 400,
+ "height": 400
},
"_anchorPoint": {
"__type__": "cc.Vec2",
@@ -15164,7 +14047,7 @@
"ctor": "Float64Array",
"array": [
0,
- -595.232,
+ 0,
0,
0,
0,
@@ -15186,14 +14069,14 @@
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
- "_id": "82jPOc34NB5rFckl19+jir"
+ "_id": "3bAtUNwsJNXbzlylthl5Rd"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 318
+ "__id__": 292
},
"_enabled": true,
"_materials": [
@@ -15204,7 +14087,60 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "2e2278c3-1dc7-4672-8200-bfc317f4ad75"
+ "__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__": 292
+ },
+ "_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__": 289
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "3cac0c04-c634-4a91-8e3f-75c231e2cafe"
},
"_type": 0,
"_sizeMode": 1,
@@ -15218,6 +14154,198 @@
"_fillRange": 0,
"_isTrimmedMode": true,
"_atlas": null,
+ "_id": "ea8IvpFRlKX5FSPIIOXIEA"
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "pian",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 280
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 297
+ }
+ ],
+ "_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__": 296
+ },
+ "_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__": 280
+ },
+ "_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": 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__": 298
+ },
+ "_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"
},
{
@@ -15225,13 +14353,13 @@
"_name": "coins4",
"_objFlags": 0,
"_parent": {
- "__id__": 315
+ "__id__": 280
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 321
+ "__id__": 301
}
],
"_prefab": null,
@@ -15258,7 +14386,7 @@
"ctor": "Float64Array",
"array": [
0,
- -481.252,
+ 179.645,
0,
0,
0,
@@ -15266,7 +14394,7 @@
1,
2,
2,
- 1
+ 2
]
},
"_eulerAngles": {
@@ -15287,7 +14415,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 320
+ "__id__": 300
},
"_enabled": true,
"_materials": [
@@ -15316,60 +14444,28 @@
},
"_id": "acMQuXoRhDNaFh9Rm1gxHy"
},
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 315
- },
- "_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": "tiaodik",
"_objFlags": 0,
"_parent": {
- "__id__": 305
+ "__id__": 280
},
"_children": [
{
- "__id__": 324
+ "__id__": 303
},
{
- "__id__": 326
+ "__id__": 305
},
{
- "__id__": 328
+ "__id__": 307
}
],
"_active": true,
"_components": [
{
- "__id__": 329
+ "__id__": 308
}
],
"_prefab": null,
@@ -15425,13 +14521,13 @@
"_name": "ninyihuode",
"_objFlags": 0,
"_parent": {
- "__id__": 323
+ "__id__": 302
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 325
+ "__id__": 304
}
],
"_prefab": null,
@@ -15487,7 +14583,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 324
+ "__id__": 303
},
"_enabled": true,
"_materials": [
@@ -15521,13 +14617,13 @@
"_name": "meijinbi",
"_objFlags": 0,
"_parent": {
- "__id__": 323
+ "__id__": 302
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 327
+ "__id__": 306
}
],
"_prefab": null,
@@ -15583,7 +14679,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 326
+ "__id__": 305
},
"_enabled": true,
"_materials": [
@@ -15617,7 +14713,7 @@
"_name": "coin",
"_objFlags": 0,
"_parent": {
- "__id__": 323
+ "__id__": 302
},
"_children": [],
"_active": true,
@@ -15675,7 +14771,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 323
+ "__id__": 302
},
"_enabled": true,
"_materials": [
@@ -15709,19 +14805,19 @@
"_name": "nextBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 305
+ "__id__": 280
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 331
+ "__id__": 310
},
{
- "__id__": 332
+ "__id__": 311
},
{
- "__id__": 334
+ "__id__": 313
}
],
"_prefab": null,
@@ -15777,7 +14873,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 330
+ "__id__": 309
},
"_enabled": true,
"_materials": [
@@ -15811,7 +14907,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 330
+ "__id__": 309
},
"_enabled": true,
"_normalMaterial": null,
@@ -15820,7 +14916,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 333
+ "__id__": 312
}
],
"_N$interactable": true,
@@ -15876,7 +14972,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 330
+ "__id__": 309
},
"_id": "02dmnqIIhNA7gNoxAqWnCT"
},
@@ -15895,7 +14991,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 330
+ "__id__": 309
},
"_enabled": true,
"_id": "06MueSn6pH/5T9HAgXf7tc"
@@ -15905,16 +15001,16 @@
"_name": "homeBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 305
+ "__id__": 280
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 336
+ "__id__": 315
},
{
- "__id__": 337
+ "__id__": 316
}
],
"_prefab": null,
@@ -15970,7 +15066,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 335
+ "__id__": 314
},
"_enabled": true,
"_materials": [
@@ -16004,7 +15100,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 335
+ "__id__": 314
},
"_enabled": true,
"_normalMaterial": null,
@@ -16013,7 +15109,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 338
+ "__id__": 317
}
],
"_N$interactable": true,
@@ -16069,7 +15165,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 335
+ "__id__": 314
},
"_id": "340osYA4tCpJlhedNAxg8f"
},
@@ -16083,12 +15179,398 @@
"handler": "returnHome",
"customEventData": ""
},
+ {
+ "__type__": "cc.Node",
+ "_name": "caidai",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 280
+ },
+ "_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": 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__": 318
+ },
+ "_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__": 280
+ },
+ "_children": [
+ {
+ "__id__": 321
+ }
+ ],
+ "_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": 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,
+ 2,
+ 2,
+ 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__": 320
+ },
+ "_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__": 320
+ },
+ "_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": "Ice",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 11
+ },
+ "_children": [],
+ "_active": false,
+ "_components": [
+ {
+ "__id__": 324
+ },
+ {
+ "__id__": 325
+ }
+ ],
+ "_prefab": null,
+ "_opacity": 0,
+ "_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.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 323
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "f4ece38e-56e4-4940-a69b-230714b59704"
+ },
+ "_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__": 305
+ "__id__": 323
+ },
+ "_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,
@@ -16106,9 +15588,922 @@
"_isAbsBottom": true,
"_isAbsHorizontalCenter": true,
"_isAbsVerticalCenter": true,
- "_originalWidth": 1080,
- "_originalHeight": 1920,
- "_id": "f10CrxhcJD0qgwPmkRKH+s"
+ "_originalWidth": 0,
+ "_originalHeight": 0,
+ "_id": "dfOLca1KVCyLxvg197AIBc"
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "NewMode",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 7
+ },
+ "_children": [
+ {
+ "__id__": 328
+ },
+ {
+ "__id__": 332
+ },
+ {
+ "__id__": 334
+ },
+ {
+ "__id__": 336
+ },
+ {
+ "__id__": 338
+ },
+ {
+ "__id__": 344
+ }
+ ],
+ "_active": false,
+ "_components": [
+ {
+ "__id__": 346
+ },
+ {
+ "__id__": 347
+ }
+ ],
+ "_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__": 327
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 329
+ },
+ {
+ "__id__": 330
+ },
+ {
+ "__id__": 331
+ }
+ ],
+ "_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__": 328
+ },
+ "_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__": 328
+ },
+ "_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__": 328
+ },
+ "_enabled": true,
+ "_id": "1e62ukhsJObKLFucCNzfwm"
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "bg",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 327
+ },
+ "_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": 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__": 332
+ },
+ "_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__": 327
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 335
+ }
+ ],
+ "_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__": 334
+ },
+ "_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__": 327
+ },
+ "_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": 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__": 336
+ },
+ "_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__": 327
+ },
+ "_children": [
+ {
+ "__id__": 339
+ }
+ ],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 341
+ },
+ {
+ "__id__": 342
+ }
+ ],
+ "_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__": 338
+ },
+ "_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": 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__": 339
+ },
+ "_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__": 338
+ },
+ "_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__": 338
+ },
+ "_enabled": true,
+ "_normalMaterial": null,
+ "_grayMaterial": null,
+ "duration": 0.1,
+ "zoomScale": 1.1,
+ "clickEvents": [
+ {
+ "__id__": 343
+ }
+ ],
+ "_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__": 338
+ },
+ "_id": "2bhrCpcRxImqyWzBaIVVCd"
+ },
+ {
+ "__type__": "cc.ClickEvent",
+ "target": {
+ "__id__": 327
+ },
+ "component": "",
+ "_componentId": "7fe14dRFQZKSKKAoEn4S7OU",
+ "handler": "clickBtn",
+ "customEventData": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "New Sprite",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 327
+ },
+ "_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": 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__": 344
+ },
+ "_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__": 327
+ },
+ "_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__": 327
+ },
+ "_enabled": true,
+ "label": null,
+ "text": "hello",
+ "_id": "52hOic8rJHMIE0B+I9nWAm"
},
{
"__type__": "cc.Node",
@@ -16119,28 +16514,28 @@
},
"_children": [
{
- "__id__": 341
+ "__id__": 349
},
{
- "__id__": 345
+ "__id__": 353
},
{
- "__id__": 351
+ "__id__": 359
},
{
- "__id__": 420
+ "__id__": 428
},
{
- "__id__": 480
+ "__id__": 488
},
{
- "__id__": 544
+ "__id__": 552
}
],
"_active": false,
"_components": [
{
- "__id__": 668
+ "__id__": 579
}
],
"_prefab": null,
@@ -16196,19 +16591,19 @@
"_name": "New Sprite(Splash)",
"_objFlags": 0,
"_parent": {
- "__id__": 340
+ "__id__": 348
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 342
+ "__id__": 350
},
{
- "__id__": 343
+ "__id__": 351
},
{
- "__id__": 344
+ "__id__": 352
}
],
"_prefab": null,
@@ -16264,7 +16659,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 341
+ "__id__": 349
},
"_enabled": true,
"_materials": [
@@ -16296,7 +16691,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 341
+ "__id__": 349
},
"_enabled": true,
"alignMode": 1,
@@ -16323,7 +16718,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 341
+ "__id__": 349
},
"_enabled": true,
"_id": "c22Pk+4yZHHaEcGiym9WxK"
@@ -16333,17 +16728,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 340
+ "__id__": 348
},
"_children": [
{
- "__id__": 346
+ "__id__": 354
}
],
"_active": true,
"_components": [
{
- "__id__": 350
+ "__id__": 358
}
],
"_prefab": null,
@@ -16399,16 +16794,16 @@
"_name": "closet",
"_objFlags": 0,
"_parent": {
- "__id__": 345
+ "__id__": 353
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 347
+ "__id__": 355
},
{
- "__id__": 348
+ "__id__": 356
}
],
"_prefab": null,
@@ -16464,7 +16859,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 346
+ "__id__": 354
},
"_enabled": true,
"_materials": [
@@ -16498,7 +16893,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 346
+ "__id__": 354
},
"_enabled": true,
"_normalMaterial": null,
@@ -16507,7 +16902,7 @@
"zoomScale": 1.2,
"clickEvents": [
{
- "__id__": 349
+ "__id__": 357
}
],
"_N$interactable": true,
@@ -16563,7 +16958,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 346
+ "__id__": 354
},
"_id": "86+4sIpYhOBrrRKStqWfWx"
},
@@ -16582,7 +16977,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 345
+ "__id__": 353
},
"_enabled": true,
"_materials": [
@@ -16614,32 +17009,32 @@
"_name": "Time",
"_objFlags": 0,
"_parent": {
- "__id__": 340
+ "__id__": 348
},
"_children": [
- {
- "__id__": 352
- },
- {
- "__id__": 354
- },
- {
- "__id__": 356
- },
- {
- "__id__": 358
- },
{
"__id__": 360
},
+ {
+ "__id__": 362
+ },
+ {
+ "__id__": 364
+ },
{
"__id__": 366
},
{
- "__id__": 382
+ "__id__": 368
},
{
- "__id__": 416
+ "__id__": 374
+ },
+ {
+ "__id__": 390
+ },
+ {
+ "__id__": 424
}
],
"_active": false,
@@ -16697,13 +17092,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 351
+ "__id__": 359
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 353
+ "__id__": 361
}
],
"_prefab": null,
@@ -16759,7 +17154,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 352
+ "__id__": 360
},
"_enabled": true,
"_materials": [
@@ -16793,13 +17188,13 @@
"_name": "result_Label1",
"_objFlags": 0,
"_parent": {
- "__id__": 351
+ "__id__": 359
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 355
+ "__id__": 363
}
],
"_prefab": null,
@@ -16855,7 +17250,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 354
+ "__id__": 362
},
"_enabled": true,
"_materials": [
@@ -16889,13 +17284,13 @@
"_name": "time_show",
"_objFlags": 0,
"_parent": {
- "__id__": 351
+ "__id__": 359
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 357
+ "__id__": 365
}
],
"_prefab": null,
@@ -16951,7 +17346,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 356
+ "__id__": 364
},
"_enabled": true,
"_materials": [
@@ -16985,13 +17380,13 @@
"_name": "label",
"_objFlags": 0,
"_parent": {
- "__id__": 351
+ "__id__": 359
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 359
+ "__id__": 367
}
],
"_prefab": null,
@@ -17047,7 +17442,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 358
+ "__id__": 366
},
"_enabled": true,
"_materials": [
@@ -17080,20 +17475,20 @@
"_name": "time_hide",
"_objFlags": 0,
"_parent": {
- "__id__": 351
+ "__id__": 359
},
"_children": [
{
- "__id__": 361
+ "__id__": 369
},
{
- "__id__": 363
+ "__id__": 371
}
],
"_active": true,
"_components": [
{
- "__id__": 365
+ "__id__": 373
}
],
"_prefab": null,
@@ -17149,13 +17544,13 @@
"_name": "guang",
"_objFlags": 0,
"_parent": {
- "__id__": 360
+ "__id__": 368
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 362
+ "__id__": 370
}
],
"_prefab": null,
@@ -17211,7 +17606,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 361
+ "__id__": 369
},
"_enabled": true,
"_materials": [
@@ -17243,13 +17638,13 @@
"_name": "nz2",
"_objFlags": 0,
"_parent": {
- "__id__": 360
+ "__id__": 368
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 364
+ "__id__": 372
}
],
"_prefab": null,
@@ -17305,7 +17700,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 363
+ "__id__": 371
},
"_enabled": true,
"_materials": [
@@ -17339,7 +17734,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 360
+ "__id__": 368
},
"_enabled": true,
"_materials": [
@@ -17371,35 +17766,35 @@
"_name": "timeBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 351
+ "__id__": 359
},
"_children": [
- {
- "__id__": 367
- },
- {
- "__id__": 369
- },
- {
- "__id__": 371
- },
- {
- "__id__": 373
- },
{
"__id__": 375
},
{
"__id__": 377
+ },
+ {
+ "__id__": 379
+ },
+ {
+ "__id__": 381
+ },
+ {
+ "__id__": 383
+ },
+ {
+ "__id__": 385
}
],
"_active": false,
"_components": [
{
- "__id__": 379
+ "__id__": 387
},
{
- "__id__": 380
+ "__id__": 388
}
],
"_prefab": null,
@@ -17455,13 +17850,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 366
+ "__id__": 374
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 368
+ "__id__": 376
}
],
"_prefab": null,
@@ -17517,7 +17912,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 367
+ "__id__": 375
},
"_enabled": true,
"_materials": [
@@ -17551,13 +17946,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 366
+ "__id__": 374
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 370
+ "__id__": 378
}
],
"_prefab": null,
@@ -17613,7 +18008,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 369
+ "__id__": 377
},
"_enabled": true,
"_materials": [
@@ -17647,13 +18042,13 @@
"_name": "number2",
"_objFlags": 0,
"_parent": {
- "__id__": 366
+ "__id__": 374
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 372
+ "__id__": 380
}
],
"_prefab": null,
@@ -17709,7 +18104,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 371
+ "__id__": 379
},
"_enabled": true,
"_materials": [
@@ -17743,13 +18138,13 @@
"_name": "number1",
"_objFlags": 0,
"_parent": {
- "__id__": 366
+ "__id__": 374
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 374
+ "__id__": 382
}
],
"_prefab": null,
@@ -17805,7 +18200,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 373
+ "__id__": 381
},
"_enabled": true,
"_materials": [
@@ -17839,13 +18234,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 366
+ "__id__": 374
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 376
+ "__id__": 384
}
],
"_prefab": null,
@@ -17901,7 +18296,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 375
+ "__id__": 383
},
"_enabled": true,
"_materials": [
@@ -17935,13 +18330,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 366
+ "__id__": 374
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 378
+ "__id__": 386
}
],
"_prefab": null,
@@ -17997,7 +18392,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 377
+ "__id__": 385
},
"_enabled": true,
"_materials": [
@@ -18031,7 +18426,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 366
+ "__id__": 374
},
"_enabled": true,
"_materials": [
@@ -18065,7 +18460,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 366
+ "__id__": 374
},
"_enabled": true,
"_normalMaterial": null,
@@ -18074,7 +18469,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 381
+ "__id__": 389
}
],
"_N$interactable": true,
@@ -18130,7 +18525,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 366
+ "__id__": 374
},
"_id": "f26wyaXk1ODqKTicGneesK"
},
@@ -18147,35 +18542,35 @@
"_name": "buyBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 351
+ "__id__": 359
},
"_children": [
{
- "__id__": 383
+ "__id__": 391
},
{
- "__id__": 385
+ "__id__": 393
},
{
- "__id__": 392
+ "__id__": 400
},
{
- "__id__": 401
+ "__id__": 409
},
{
- "__id__": 410
+ "__id__": 418
},
{
- "__id__": 412
+ "__id__": 420
}
],
"_active": true,
"_components": [
{
- "__id__": 413
+ "__id__": 421
},
{
- "__id__": 414
+ "__id__": 422
}
],
"_prefab": null,
@@ -18231,13 +18626,13 @@
"_name": "btn_zi_xhongshi",
"_objFlags": 0,
"_parent": {
- "__id__": 382
+ "__id__": 390
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 384
+ "__id__": 392
}
],
"_prefab": null,
@@ -18293,7 +18688,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 383
+ "__id__": 391
},
"_enabled": true,
"_materials": [
@@ -18304,7 +18699,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "f8aa8e26-7f6f-4e4f-99ff-ae11c9245071"
+ "__uuid__": "9a0bcbd1-387d-41a4-a251-9e8614b8deab"
},
"_type": 0,
"_sizeMode": 1,
@@ -18317,7 +18712,9 @@
"_fillStart": 0,
"_fillRange": 0,
"_isTrimmedMode": true,
- "_atlas": null,
+ "_atlas": {
+ "__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8"
+ },
"_id": "e8HcBtUF9CwYW8PO1XsEWP"
},
{
@@ -18325,17 +18722,17 @@
"_name": "coin1",
"_objFlags": 0,
"_parent": {
- "__id__": 382
+ "__id__": 390
},
"_children": [
{
- "__id__": 386
+ "__id__": 394
},
{
- "__id__": 388
+ "__id__": 396
},
{
- "__id__": 390
+ "__id__": 398
}
],
"_active": false,
@@ -18393,13 +18790,13 @@
"_name": "coins5",
"_objFlags": 0,
"_parent": {
- "__id__": 385
+ "__id__": 393
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 387
+ "__id__": 395
}
],
"_prefab": null,
@@ -18455,7 +18852,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 386
+ "__id__": 394
},
"_enabled": true,
"_materials": [
@@ -18489,13 +18886,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 385
+ "__id__": 393
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 389
+ "__id__": 397
}
],
"_prefab": null,
@@ -18551,7 +18948,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 388
+ "__id__": 396
},
"_enabled": true,
"_materials": [
@@ -18585,13 +18982,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 385
+ "__id__": 393
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 391
+ "__id__": 399
}
],
"_prefab": null,
@@ -18647,7 +19044,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 390
+ "__id__": 398
},
"_enabled": true,
"_materials": [
@@ -18681,20 +19078,20 @@
"_name": "coin2",
"_objFlags": 0,
"_parent": {
- "__id__": 382
+ "__id__": 390
},
"_children": [
{
- "__id__": 393
+ "__id__": 401
},
{
- "__id__": 395
+ "__id__": 403
},
{
- "__id__": 397
+ "__id__": 405
},
{
- "__id__": 399
+ "__id__": 407
}
],
"_active": false,
@@ -18752,13 +19149,13 @@
"_name": "coins1",
"_objFlags": 0,
"_parent": {
- "__id__": 392
+ "__id__": 400
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 394
+ "__id__": 402
}
],
"_prefab": null,
@@ -18814,7 +19211,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 393
+ "__id__": 401
},
"_enabled": true,
"_materials": [
@@ -18848,13 +19245,13 @@
"_name": "coins5",
"_objFlags": 0,
"_parent": {
- "__id__": 392
+ "__id__": 400
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 396
+ "__id__": 404
}
],
"_prefab": null,
@@ -18910,7 +19307,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 395
+ "__id__": 403
},
"_enabled": true,
"_materials": [
@@ -18944,13 +19341,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 392
+ "__id__": 400
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 398
+ "__id__": 406
}
],
"_prefab": null,
@@ -19006,7 +19403,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 397
+ "__id__": 405
},
"_enabled": true,
"_materials": [
@@ -19040,13 +19437,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 392
+ "__id__": 400
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 400
+ "__id__": 408
}
],
"_prefab": null,
@@ -19102,7 +19499,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 399
+ "__id__": 407
},
"_enabled": true,
"_materials": [
@@ -19136,20 +19533,20 @@
"_name": "coin3",
"_objFlags": 0,
"_parent": {
- "__id__": 382
+ "__id__": 390
},
"_children": [
{
- "__id__": 402
+ "__id__": 410
},
{
- "__id__": 404
+ "__id__": 412
},
{
- "__id__": 406
+ "__id__": 414
},
{
- "__id__": 408
+ "__id__": 416
}
],
"_active": false,
@@ -19207,13 +19604,13 @@
"_name": "coins1",
"_objFlags": 0,
"_parent": {
- "__id__": 401
+ "__id__": 409
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 403
+ "__id__": 411
}
],
"_prefab": null,
@@ -19269,7 +19666,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 402
+ "__id__": 410
},
"_enabled": true,
"_materials": [
@@ -19303,13 +19700,13 @@
"_name": "coins5",
"_objFlags": 0,
"_parent": {
- "__id__": 401
+ "__id__": 409
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 405
+ "__id__": 413
}
],
"_prefab": null,
@@ -19365,7 +19762,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 404
+ "__id__": 412
},
"_enabled": true,
"_materials": [
@@ -19399,13 +19796,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 401
+ "__id__": 409
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 407
+ "__id__": 415
}
],
"_prefab": null,
@@ -19461,7 +19858,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 406
+ "__id__": 414
},
"_enabled": true,
"_materials": [
@@ -19495,13 +19892,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 401
+ "__id__": 409
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 409
+ "__id__": 417
}
],
"_prefab": null,
@@ -19557,7 +19954,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 408
+ "__id__": 416
},
"_enabled": true,
"_materials": [
@@ -19591,13 +19988,13 @@
"_name": "coins",
"_objFlags": 0,
"_parent": {
- "__id__": 382
+ "__id__": 390
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 411
+ "__id__": 419
}
],
"_prefab": null,
@@ -19653,7 +20050,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 410
+ "__id__": 418
},
"_enabled": true,
"_materials": [
@@ -19687,7 +20084,7 @@
"_name": "coinNun",
"_objFlags": 0,
"_parent": {
- "__id__": 382
+ "__id__": 390
},
"_children": [],
"_active": false,
@@ -19745,7 +20142,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 382
+ "__id__": 390
},
"_enabled": true,
"_materials": [
@@ -19779,7 +20176,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 382
+ "__id__": 390
},
"_enabled": true,
"_normalMaterial": null,
@@ -19788,7 +20185,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 415
+ "__id__": 423
}
],
"_N$interactable": true,
@@ -19844,7 +20241,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 382
+ "__id__": 390
},
"_id": "d9X6reFQ5ElIF/oEEoTwvB"
},
@@ -19863,16 +20260,16 @@
"_name": "homeBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 351
+ "__id__": 359
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 417
+ "__id__": 425
},
{
- "__id__": 418
+ "__id__": 426
}
],
"_prefab": null,
@@ -19928,7 +20325,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 416
+ "__id__": 424
},
"_enabled": true,
"_materials": [
@@ -19962,7 +20359,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 416
+ "__id__": 424
},
"_enabled": true,
"_normalMaterial": null,
@@ -19971,7 +20368,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 419
+ "__id__": 427
}
],
"_N$interactable": true,
@@ -20027,7 +20424,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 416
+ "__id__": 424
},
"_id": "48mz2WOYxOmpmmNFGfPFpu"
},
@@ -20046,26 +20443,26 @@
"_name": "Boom",
"_objFlags": 0,
"_parent": {
- "__id__": 340
+ "__id__": 348
},
"_children": [
- {
- "__id__": 421
- },
- {
- "__id__": 423
- },
{
"__id__": 429
},
+ {
+ "__id__": 431
+ },
{
"__id__": 437
},
{
- "__id__": 443
+ "__id__": 445
},
{
- "__id__": 445
+ "__id__": 451
+ },
+ {
+ "__id__": 453
}
],
"_active": false,
@@ -20123,13 +20520,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 420
+ "__id__": 428
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 422
+ "__id__": 430
}
],
"_prefab": null,
@@ -20185,7 +20582,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 421
+ "__id__": 429
},
"_enabled": true,
"_materials": [
@@ -20219,20 +20616,20 @@
"_name": "yuandi",
"_objFlags": 0,
"_parent": {
- "__id__": 420
+ "__id__": 428
},
"_children": [
{
- "__id__": 424
+ "__id__": 432
},
{
- "__id__": 426
+ "__id__": 434
}
],
"_active": true,
"_components": [
{
- "__id__": 428
+ "__id__": 436
}
],
"_prefab": null,
@@ -20288,13 +20685,13 @@
"_name": "guang",
"_objFlags": 0,
"_parent": {
- "__id__": 423
+ "__id__": 431
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 425
+ "__id__": 433
}
],
"_prefab": null,
@@ -20350,7 +20747,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 424
+ "__id__": 432
},
"_enabled": true,
"_materials": [
@@ -20382,13 +20779,13 @@
"_name": "boom_show",
"_objFlags": 0,
"_parent": {
- "__id__": 423
+ "__id__": 431
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 427
+ "__id__": 435
}
],
"_prefab": null,
@@ -20444,7 +20841,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 426
+ "__id__": 434
},
"_enabled": true,
"_materials": [
@@ -20478,7 +20875,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 423
+ "__id__": 431
},
"_enabled": true,
"_materials": [
@@ -20510,23 +20907,23 @@
"_name": "boomBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 420
+ "__id__": 428
},
"_children": [
{
- "__id__": 430
+ "__id__": 438
},
{
- "__id__": 432
+ "__id__": 440
}
],
"_active": false,
"_components": [
{
- "__id__": 434
+ "__id__": 442
},
{
- "__id__": 435
+ "__id__": 443
}
],
"_prefab": null,
@@ -20582,13 +20979,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 429
+ "__id__": 437
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 431
+ "__id__": 439
}
],
"_prefab": null,
@@ -20644,7 +21041,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 430
+ "__id__": 438
},
"_enabled": true,
"_materials": [
@@ -20678,13 +21075,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 429
+ "__id__": 437
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 433
+ "__id__": 441
}
],
"_prefab": null,
@@ -20740,7 +21137,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 432
+ "__id__": 440
},
"_enabled": true,
"_materials": [
@@ -20774,7 +21171,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 429
+ "__id__": 437
},
"_enabled": true,
"_materials": [
@@ -20808,7 +21205,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 429
+ "__id__": 437
},
"_enabled": true,
"_normalMaterial": null,
@@ -20817,7 +21214,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 436
+ "__id__": 444
}
],
"_N$interactable": true,
@@ -20873,7 +21270,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 429
+ "__id__": 437
},
"_id": "fdZzVHD4hNAIg80rQMiVrL"
},
@@ -20890,20 +21287,20 @@
"_name": "timeBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 420
+ "__id__": 428
},
"_children": [
{
- "__id__": 438
+ "__id__": 446
}
],
"_active": true,
"_components": [
{
- "__id__": 440
+ "__id__": 448
},
{
- "__id__": 441
+ "__id__": 449
}
],
"_prefab": null,
@@ -20959,13 +21356,13 @@
"_name": "btn_zi_xhongshi",
"_objFlags": 0,
"_parent": {
- "__id__": 437
+ "__id__": 445
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 439
+ "__id__": 447
}
],
"_prefab": null,
@@ -21021,7 +21418,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 438
+ "__id__": 446
},
"_enabled": true,
"_materials": [
@@ -21051,7 +21448,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 437
+ "__id__": 445
},
"_enabled": true,
"_materials": [
@@ -21085,7 +21482,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 437
+ "__id__": 445
},
"_enabled": true,
"_normalMaterial": null,
@@ -21094,7 +21491,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 442
+ "__id__": 450
}
],
"_N$interactable": true,
@@ -21150,7 +21547,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 437
+ "__id__": 445
},
"_id": "55yv+R8WZJC6lx8Nc3Ql1k"
},
@@ -21169,13 +21566,13 @@
"_name": "result_title4",
"_objFlags": 0,
"_parent": {
- "__id__": 420
+ "__id__": 428
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 444
+ "__id__": 452
}
],
"_prefab": null,
@@ -21231,7 +21628,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 443
+ "__id__": 451
},
"_enabled": true,
"_materials": [
@@ -21265,35 +21662,35 @@
"_name": "buyBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 420
+ "__id__": 428
},
"_children": [
{
- "__id__": 446
+ "__id__": 454
},
{
- "__id__": 448
+ "__id__": 456
},
{
- "__id__": 450
+ "__id__": 458
},
{
- "__id__": 452
+ "__id__": 460
},
{
- "__id__": 459
+ "__id__": 467
},
{
- "__id__": 468
+ "__id__": 476
}
],
"_active": true,
"_components": [
{
- "__id__": 477
+ "__id__": 485
},
{
- "__id__": 478
+ "__id__": 486
}
],
"_prefab": null,
@@ -21349,13 +21746,13 @@
"_name": "yichu",
"_objFlags": 0,
"_parent": {
- "__id__": 445
+ "__id__": 453
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 447
+ "__id__": 455
}
],
"_prefab": null,
@@ -21411,7 +21808,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 446
+ "__id__": 454
},
"_enabled": true,
"_materials": [
@@ -21445,13 +21842,13 @@
"_name": "coins",
"_objFlags": 0,
"_parent": {
- "__id__": 445
+ "__id__": 453
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 449
+ "__id__": 457
}
],
"_prefab": null,
@@ -21507,7 +21904,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 448
+ "__id__": 456
},
"_enabled": true,
"_materials": [
@@ -21541,13 +21938,13 @@
"_name": "coin",
"_objFlags": 0,
"_parent": {
- "__id__": 445
+ "__id__": 453
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 451
+ "__id__": 459
}
],
"_prefab": null,
@@ -21603,7 +22000,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 450
+ "__id__": 458
},
"_enabled": true,
"_layoutSize": {
@@ -21635,17 +22032,17 @@
"_name": "coin1",
"_objFlags": 0,
"_parent": {
- "__id__": 445
+ "__id__": 453
},
"_children": [
{
- "__id__": 453
+ "__id__": 461
},
{
- "__id__": 455
+ "__id__": 463
},
{
- "__id__": 457
+ "__id__": 465
}
],
"_active": false,
@@ -21703,13 +22100,13 @@
"_name": "coins5",
"_objFlags": 0,
"_parent": {
- "__id__": 452
+ "__id__": 460
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 454
+ "__id__": 462
}
],
"_prefab": null,
@@ -21765,7 +22162,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 453
+ "__id__": 461
},
"_enabled": true,
"_materials": [
@@ -21799,13 +22196,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 452
+ "__id__": 460
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 456
+ "__id__": 464
}
],
"_prefab": null,
@@ -21861,7 +22258,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 455
+ "__id__": 463
},
"_enabled": true,
"_materials": [
@@ -21895,13 +22292,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 452
+ "__id__": 460
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 458
+ "__id__": 466
}
],
"_prefab": null,
@@ -21957,7 +22354,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 457
+ "__id__": 465
},
"_enabled": true,
"_materials": [
@@ -21991,20 +22388,20 @@
"_name": "coin2",
"_objFlags": 0,
"_parent": {
- "__id__": 445
+ "__id__": 453
},
"_children": [
{
- "__id__": 460
+ "__id__": 468
},
{
- "__id__": 462
+ "__id__": 470
},
{
- "__id__": 464
+ "__id__": 472
},
{
- "__id__": 466
+ "__id__": 474
}
],
"_active": false,
@@ -22062,13 +22459,13 @@
"_name": "coins1",
"_objFlags": 0,
"_parent": {
- "__id__": 459
+ "__id__": 467
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 461
+ "__id__": 469
}
],
"_prefab": null,
@@ -22124,7 +22521,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 460
+ "__id__": 468
},
"_enabled": true,
"_materials": [
@@ -22158,13 +22555,13 @@
"_name": "coins5",
"_objFlags": 0,
"_parent": {
- "__id__": 459
+ "__id__": 467
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 463
+ "__id__": 471
}
],
"_prefab": null,
@@ -22220,7 +22617,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 462
+ "__id__": 470
},
"_enabled": true,
"_materials": [
@@ -22254,13 +22651,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 459
+ "__id__": 467
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 465
+ "__id__": 473
}
],
"_prefab": null,
@@ -22316,7 +22713,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 464
+ "__id__": 472
},
"_enabled": true,
"_materials": [
@@ -22350,13 +22747,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 459
+ "__id__": 467
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 467
+ "__id__": 475
}
],
"_prefab": null,
@@ -22412,7 +22809,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 466
+ "__id__": 474
},
"_enabled": true,
"_materials": [
@@ -22446,20 +22843,20 @@
"_name": "coin3",
"_objFlags": 0,
"_parent": {
- "__id__": 445
+ "__id__": 453
},
"_children": [
{
- "__id__": 469
+ "__id__": 477
},
{
- "__id__": 471
+ "__id__": 479
},
{
- "__id__": 473
+ "__id__": 481
},
{
- "__id__": 475
+ "__id__": 483
}
],
"_active": false,
@@ -22517,13 +22914,13 @@
"_name": "coins1",
"_objFlags": 0,
"_parent": {
- "__id__": 468
+ "__id__": 476
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 470
+ "__id__": 478
}
],
"_prefab": null,
@@ -22579,7 +22976,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 469
+ "__id__": 477
},
"_enabled": true,
"_materials": [
@@ -22613,13 +23010,13 @@
"_name": "coins5",
"_objFlags": 0,
"_parent": {
- "__id__": 468
+ "__id__": 476
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 472
+ "__id__": 480
}
],
"_prefab": null,
@@ -22675,7 +23072,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 471
+ "__id__": 479
},
"_enabled": true,
"_materials": [
@@ -22709,13 +23106,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 468
+ "__id__": 476
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 474
+ "__id__": 482
}
],
"_prefab": null,
@@ -22771,7 +23168,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 473
+ "__id__": 481
},
"_enabled": true,
"_materials": [
@@ -22805,13 +23202,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 468
+ "__id__": 476
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 476
+ "__id__": 484
}
],
"_prefab": null,
@@ -22867,7 +23264,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 475
+ "__id__": 483
},
"_enabled": true,
"_materials": [
@@ -22901,7 +23298,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 445
+ "__id__": 453
},
"_enabled": true,
"_materials": [
@@ -22935,7 +23332,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 445
+ "__id__": 453
},
"_enabled": true,
"_normalMaterial": null,
@@ -22944,7 +23341,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 479
+ "__id__": 487
}
],
"_N$interactable": true,
@@ -23000,7 +23397,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 445
+ "__id__": 453
},
"_id": "1eGE6t0E9Dtp+xwO6Shc3T"
},
@@ -23019,21 +23416,9 @@
"_name": "Lock",
"_objFlags": 0,
"_parent": {
- "__id__": 340
+ "__id__": 348
},
"_children": [
- {
- "__id__": 481
- },
- {
- "__id__": 483
- },
- {
- "__id__": 485
- },
- {
- "__id__": 487
- },
{
"__id__": 489
},
@@ -23041,10 +23426,22 @@
"__id__": 491
},
{
- "__id__": 524
+ "__id__": 493
},
{
- "__id__": 528
+ "__id__": 495
+ },
+ {
+ "__id__": 497
+ },
+ {
+ "__id__": 499
+ },
+ {
+ "__id__": 532
+ },
+ {
+ "__id__": 536
}
],
"_active": false,
@@ -23102,13 +23499,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 480
+ "__id__": 488
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 482
+ "__id__": 490
}
],
"_prefab": null,
@@ -23164,7 +23561,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 481
+ "__id__": 489
},
"_enabled": true,
"_materials": [
@@ -23198,13 +23595,13 @@
"_name": "chubuqule",
"_objFlags": 0,
"_parent": {
- "__id__": 480
+ "__id__": 488
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 484
+ "__id__": 492
}
],
"_prefab": null,
@@ -23260,7 +23657,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 483
+ "__id__": 491
},
"_enabled": true,
"_materials": [
@@ -23294,13 +23691,13 @@
"_name": "boom_show",
"_objFlags": 0,
"_parent": {
- "__id__": 480
+ "__id__": 488
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 486
+ "__id__": 494
}
],
"_prefab": null,
@@ -23356,7 +23753,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 485
+ "__id__": 493
},
"_enabled": true,
"_materials": [
@@ -23388,13 +23785,13 @@
"_name": "guang",
"_objFlags": 0,
"_parent": {
- "__id__": 480
+ "__id__": 488
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 488
+ "__id__": 496
}
],
"_prefab": null,
@@ -23450,7 +23847,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 487
+ "__id__": 495
},
"_enabled": true,
"_materials": [
@@ -23482,13 +23879,13 @@
"_name": "door",
"_objFlags": 0,
"_parent": {
- "__id__": 480
+ "__id__": 488
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 490
+ "__id__": 498
}
],
"_prefab": null,
@@ -23544,7 +23941,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 489
+ "__id__": 497
},
"_enabled": true,
"_materials": [
@@ -23578,32 +23975,32 @@
"_name": "buyBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 480
+ "__id__": 488
},
"_children": [
{
- "__id__": 492
+ "__id__": 500
},
{
- "__id__": 494
+ "__id__": 502
},
{
- "__id__": 496
+ "__id__": 504
},
{
- "__id__": 503
+ "__id__": 511
},
{
- "__id__": 512
+ "__id__": 520
}
],
"_active": true,
"_components": [
{
- "__id__": 521
+ "__id__": 529
},
{
- "__id__": 522
+ "__id__": 530
}
],
"_prefab": null,
@@ -23659,13 +24056,13 @@
"_name": "doudakai",
"_objFlags": 0,
"_parent": {
- "__id__": 491
+ "__id__": 499
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 493
+ "__id__": 501
}
],
"_prefab": null,
@@ -23721,7 +24118,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 492
+ "__id__": 500
},
"_enabled": true,
"_materials": [
@@ -23755,13 +24152,13 @@
"_name": "coins",
"_objFlags": 0,
"_parent": {
- "__id__": 491
+ "__id__": 499
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 495
+ "__id__": 503
}
],
"_prefab": null,
@@ -23817,7 +24214,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 494
+ "__id__": 502
},
"_enabled": true,
"_materials": [
@@ -23851,17 +24248,17 @@
"_name": "coin1",
"_objFlags": 0,
"_parent": {
- "__id__": 491
+ "__id__": 499
},
"_children": [
{
- "__id__": 497
+ "__id__": 505
},
{
- "__id__": 499
+ "__id__": 507
},
{
- "__id__": 501
+ "__id__": 509
}
],
"_active": false,
@@ -23919,13 +24316,13 @@
"_name": "coins5",
"_objFlags": 0,
"_parent": {
- "__id__": 496
+ "__id__": 504
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 498
+ "__id__": 506
}
],
"_prefab": null,
@@ -23981,7 +24378,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 497
+ "__id__": 505
},
"_enabled": true,
"_materials": [
@@ -24015,13 +24412,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 496
+ "__id__": 504
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 500
+ "__id__": 508
}
],
"_prefab": null,
@@ -24077,7 +24474,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 499
+ "__id__": 507
},
"_enabled": true,
"_materials": [
@@ -24111,13 +24508,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 496
+ "__id__": 504
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 502
+ "__id__": 510
}
],
"_prefab": null,
@@ -24173,7 +24570,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 501
+ "__id__": 509
},
"_enabled": true,
"_materials": [
@@ -24207,20 +24604,20 @@
"_name": "coin2",
"_objFlags": 0,
"_parent": {
- "__id__": 491
+ "__id__": 499
},
"_children": [
{
- "__id__": 504
+ "__id__": 512
},
{
- "__id__": 506
+ "__id__": 514
},
{
- "__id__": 508
+ "__id__": 516
},
{
- "__id__": 510
+ "__id__": 518
}
],
"_active": false,
@@ -24278,13 +24675,13 @@
"_name": "coins1",
"_objFlags": 0,
"_parent": {
- "__id__": 503
+ "__id__": 511
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 505
+ "__id__": 513
}
],
"_prefab": null,
@@ -24340,7 +24737,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 504
+ "__id__": 512
},
"_enabled": true,
"_materials": [
@@ -24374,13 +24771,13 @@
"_name": "coins5",
"_objFlags": 0,
"_parent": {
- "__id__": 503
+ "__id__": 511
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 507
+ "__id__": 515
}
],
"_prefab": null,
@@ -24436,7 +24833,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 506
+ "__id__": 514
},
"_enabled": true,
"_materials": [
@@ -24470,13 +24867,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 503
+ "__id__": 511
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 509
+ "__id__": 517
}
],
"_prefab": null,
@@ -24532,7 +24929,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 508
+ "__id__": 516
},
"_enabled": true,
"_materials": [
@@ -24566,13 +24963,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 503
+ "__id__": 511
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 511
+ "__id__": 519
}
],
"_prefab": null,
@@ -24628,7 +25025,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 510
+ "__id__": 518
},
"_enabled": true,
"_materials": [
@@ -24662,20 +25059,20 @@
"_name": "coin3",
"_objFlags": 0,
"_parent": {
- "__id__": 491
+ "__id__": 499
},
"_children": [
{
- "__id__": 513
+ "__id__": 521
},
{
- "__id__": 515
+ "__id__": 523
},
{
- "__id__": 517
+ "__id__": 525
},
{
- "__id__": 519
+ "__id__": 527
}
],
"_active": false,
@@ -24733,13 +25130,13 @@
"_name": "coins1",
"_objFlags": 0,
"_parent": {
- "__id__": 512
+ "__id__": 520
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 514
+ "__id__": 522
}
],
"_prefab": null,
@@ -24795,7 +25192,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 513
+ "__id__": 521
},
"_enabled": true,
"_materials": [
@@ -24829,13 +25226,13 @@
"_name": "coins5",
"_objFlags": 0,
"_parent": {
- "__id__": 512
+ "__id__": 520
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 516
+ "__id__": 524
}
],
"_prefab": null,
@@ -24891,7 +25288,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 515
+ "__id__": 523
},
"_enabled": true,
"_materials": [
@@ -24925,13 +25322,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 512
+ "__id__": 520
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 518
+ "__id__": 526
}
],
"_prefab": null,
@@ -24987,7 +25384,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 517
+ "__id__": 525
},
"_enabled": true,
"_materials": [
@@ -25021,13 +25418,13 @@
"_name": "coins0",
"_objFlags": 0,
"_parent": {
- "__id__": 512
+ "__id__": 520
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 520
+ "__id__": 528
}
],
"_prefab": null,
@@ -25083,7 +25480,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 519
+ "__id__": 527
},
"_enabled": true,
"_materials": [
@@ -25117,7 +25514,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 491
+ "__id__": 499
},
"_enabled": true,
"_materials": [
@@ -25151,7 +25548,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 491
+ "__id__": 499
},
"_enabled": true,
"_normalMaterial": null,
@@ -25160,7 +25557,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 523
+ "__id__": 531
}
],
"_N$interactable": true,
@@ -25216,7 +25613,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 491
+ "__id__": 499
},
"_id": "edQGbD275DNLNRE28h8uZo"
},
@@ -25235,16 +25632,16 @@
"_name": "giveup",
"_objFlags": 0,
"_parent": {
- "__id__": 480
+ "__id__": 488
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 525
+ "__id__": 533
},
{
- "__id__": 526
+ "__id__": 534
}
],
"_prefab": null,
@@ -25300,7 +25697,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 524
+ "__id__": 532
},
"_enabled": true,
"_materials": [
@@ -25334,7 +25731,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 524
+ "__id__": 532
},
"_enabled": true,
"_normalMaterial": null,
@@ -25343,7 +25740,7 @@
"zoomScale": 1.2,
"clickEvents": [
{
- "__id__": 527
+ "__id__": 535
}
],
"_N$interactable": true,
@@ -25399,7 +25796,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 524
+ "__id__": 532
},
"_id": "61Rwcd8TdKBrQzej/BbHQO"
},
@@ -25418,35 +25815,35 @@
"_name": "lockBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 480
+ "__id__": 488
},
"_children": [
- {
- "__id__": 529
- },
- {
- "__id__": 531
- },
- {
- "__id__": 533
- },
- {
- "__id__": 535
- },
{
"__id__": 537
},
{
"__id__": 539
+ },
+ {
+ "__id__": 541
+ },
+ {
+ "__id__": 543
+ },
+ {
+ "__id__": 545
+ },
+ {
+ "__id__": 547
}
],
"_active": false,
"_components": [
{
- "__id__": 541
+ "__id__": 549
},
{
- "__id__": 542
+ "__id__": 550
}
],
"_prefab": null,
@@ -25502,13 +25899,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 528
+ "__id__": 536
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 530
+ "__id__": 538
}
],
"_prefab": null,
@@ -25564,7 +25961,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 529
+ "__id__": 537
},
"_enabled": true,
"_materials": [
@@ -25598,13 +25995,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 528
+ "__id__": 536
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 532
+ "__id__": 540
}
],
"_prefab": null,
@@ -25660,7 +26057,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 531
+ "__id__": 539
},
"_enabled": true,
"_materials": [
@@ -25694,13 +26091,13 @@
"_name": "number2",
"_objFlags": 0,
"_parent": {
- "__id__": 528
+ "__id__": 536
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 534
+ "__id__": 542
}
],
"_prefab": null,
@@ -25756,7 +26153,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 533
+ "__id__": 541
},
"_enabled": true,
"_materials": [
@@ -25790,13 +26187,13 @@
"_name": "number1",
"_objFlags": 0,
"_parent": {
- "__id__": 528
+ "__id__": 536
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 536
+ "__id__": 544
}
],
"_prefab": null,
@@ -25852,7 +26249,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 535
+ "__id__": 543
},
"_enabled": true,
"_materials": [
@@ -25886,13 +26283,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 528
+ "__id__": 536
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 538
+ "__id__": 546
}
],
"_prefab": null,
@@ -25948,7 +26345,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 537
+ "__id__": 545
},
"_enabled": true,
"_materials": [
@@ -25982,13 +26379,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 528
+ "__id__": 536
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 540
+ "__id__": 548
}
],
"_prefab": null,
@@ -26044,7 +26441,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 539
+ "__id__": 547
},
"_enabled": true,
"_materials": [
@@ -26078,7 +26475,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 528
+ "__id__": 536
},
"_enabled": true,
"_materials": [
@@ -26112,7 +26509,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 528
+ "__id__": 536
},
"_enabled": true,
"_normalMaterial": null,
@@ -26121,7 +26518,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 543
+ "__id__": 551
}
],
"_N$interactable": true,
@@ -26177,7 +26574,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 528
+ "__id__": 536
},
"_id": "655dVf4UVDOrfIwT5AEPmn"
},
@@ -26194,29 +26591,29 @@
"_name": "Health",
"_objFlags": 0,
"_parent": {
- "__id__": 340
+ "__id__": 348
},
"_children": [
{
- "__id__": 545
+ "__id__": 553
},
{
- "__id__": 547
+ "__id__": 555
},
{
- "__id__": 551
+ "__id__": 559
},
{
- "__id__": 557
+ "__id__": 565
},
{
- "__id__": 561
+ "__id__": 569
},
{
- "__id__": 662
+ "__id__": 573
},
{
- "__id__": 666
+ "__id__": 577
}
],
"_active": false,
@@ -26274,13 +26671,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 544
+ "__id__": 552
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 546
+ "__id__": 554
}
],
"_prefab": null,
@@ -26336,7 +26733,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 545
+ "__id__": 553
},
"_enabled": true,
"_materials": [
@@ -26370,17 +26767,17 @@
"_name": "yuandi",
"_objFlags": 0,
"_parent": {
- "__id__": 544
+ "__id__": 552
},
"_children": [
{
- "__id__": 548
+ "__id__": 556
}
],
"_active": true,
"_components": [
{
- "__id__": 550
+ "__id__": 558
}
],
"_prefab": null,
@@ -26436,13 +26833,13 @@
"_name": "guang",
"_objFlags": 0,
"_parent": {
- "__id__": 547
+ "__id__": 555
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 549
+ "__id__": 557
}
],
"_prefab": null,
@@ -26498,7 +26895,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 548
+ "__id__": 556
},
"_enabled": true,
"_materials": [
@@ -26530,7 +26927,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 547
+ "__id__": 555
},
"_enabled": true,
"_materials": [
@@ -26562,20 +26959,20 @@
"_name": "boom_show",
"_objFlags": 0,
"_parent": {
- "__id__": 544
+ "__id__": 552
},
"_children": [
{
- "__id__": 552
+ "__id__": 560
},
{
- "__id__": 554
+ "__id__": 562
}
],
"_active": true,
"_components": [
{
- "__id__": 556
+ "__id__": 564
}
],
"_prefab": null,
@@ -26631,13 +27028,13 @@
"_name": "hp_-",
"_objFlags": 0,
"_parent": {
- "__id__": 551
+ "__id__": 559
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 553
+ "__id__": 561
}
],
"_prefab": null,
@@ -26693,7 +27090,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 552
+ "__id__": 560
},
"_enabled": true,
"_materials": [
@@ -26727,13 +27124,13 @@
"_name": "hp_1",
"_objFlags": 0,
"_parent": {
- "__id__": 551
+ "__id__": 559
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 555
+ "__id__": 563
}
],
"_prefab": null,
@@ -26789,7 +27186,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 554
+ "__id__": 562
},
"_enabled": true,
"_materials": [
@@ -26823,7 +27220,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 551
+ "__id__": 559
},
"_enabled": true,
"_materials": [
@@ -26857,16 +27254,16 @@
"_name": "homeBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 544
+ "__id__": 552
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 558
+ "__id__": 566
},
{
- "__id__": 559
+ "__id__": 567
}
],
"_prefab": null,
@@ -26922,7 +27319,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 557
+ "__id__": 565
},
"_enabled": true,
"_materials": [
@@ -26956,7 +27353,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 557
+ "__id__": 565
},
"_enabled": true,
"_normalMaterial": null,
@@ -26965,7 +27362,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 560
+ "__id__": 568
}
],
"_N$interactable": true,
@@ -27021,7 +27418,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 557
+ "__id__": 565
},
"_id": "e6+nQbfBJDk5i7aunx3eFh"
},
@@ -27040,16 +27437,16 @@
"_name": "timeBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 544
+ "__id__": 552
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 562
+ "__id__": 570
},
{
- "__id__": 563
+ "__id__": 571
}
],
"_prefab": null,
@@ -27105,7 +27502,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 561
+ "__id__": 569
},
"_enabled": true,
"_materials": [
@@ -27139,7 +27536,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 561
+ "__id__": 569
},
"_enabled": true,
"_normalMaterial": null,
@@ -27148,7 +27545,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 564
+ "__id__": 572
}
],
"_N$interactable": true,
@@ -27204,19 +27601,352 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 561
+ "__id__": 569
},
"_id": "bbSZLwLOdIJJ624BuB24QD"
},
{
"__type__": "cc.ClickEvent",
"target": {
- "__id__": 565
+ "__id__": 15
},
"component": "",
- "_componentId": "19d952d5kVBrLSzAIGeElFK",
- "handler": "clickRestart",
- "customEventData": "hp"
+ "_componentId": "2234assp7RIvpDgrnqljp2R",
+ "handler": "againLevel",
+ "customEventData": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "return",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 552
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 574
+ },
+ {
+ "__id__": 575
+ }
+ ],
+ "_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__": 573
+ },
+ "_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__": 573
+ },
+ "_enabled": true,
+ "_normalMaterial": null,
+ "_grayMaterial": null,
+ "duration": 0.1,
+ "zoomScale": 1.1,
+ "clickEvents": [
+ {
+ "__id__": 576
+ }
+ ],
+ "_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__": 573
+ },
+ "_id": "46P35ucclP8p9BnaDyBDpD"
+ },
+ {
+ "__type__": "cc.ClickEvent",
+ "target": {
+ "__id__": 15
+ },
+ "component": "",
+ "_componentId": "2234assp7RIvpDgrnqljp2R",
+ "handler": "returnHome",
+ "customEventData": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "result_title4",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 552
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 578
+ }
+ ],
+ "_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__": 577
+ },
+ "_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__": 348
+ },
+ "_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.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",
@@ -27227,52 +27957,52 @@
},
"_children": [
{
- "__id__": 566
+ "__id__": 582
},
{
- "__id__": 569
+ "__id__": 585
},
{
- "__id__": 571
+ "__id__": 587
},
{
- "__id__": 575
+ "__id__": 591
},
{
- "__id__": 579
+ "__id__": 595
},
{
- "__id__": 586
+ "__id__": 602
},
{
- "__id__": 588
+ "__id__": 604
},
{
- "__id__": 592
+ "__id__": 608
},
{
- "__id__": 594
- },
- {
- "__id__": 596
- },
- {
- "__id__": 598
- },
- {
- "__id__": 605
+ "__id__": 610
},
{
"__id__": 612
},
{
- "__id__": 619
+ "__id__": 614
+ },
+ {
+ "__id__": 621
+ },
+ {
+ "__id__": 628
+ },
+ {
+ "__id__": 635
}
],
"_active": false,
"_components": [
{
- "__id__": 661
+ "__id__": 677
}
],
"_prefab": null,
@@ -27328,16 +28058,16 @@
"_name": "New Sprite(Splash)",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 567
+ "__id__": 583
},
{
- "__id__": 568
+ "__id__": 584
}
],
"_prefab": null,
@@ -27393,7 +28123,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 566
+ "__id__": 582
},
"_enabled": true,
"_materials": [
@@ -27425,7 +28155,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 566
+ "__id__": 582
},
"_enabled": true,
"_id": "14MNfl+ahOhqeYjELowhPw"
@@ -27435,13 +28165,13 @@
"_name": "bg",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 570
+ "__id__": 586
}
],
"_prefab": null,
@@ -27497,7 +28227,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 569
+ "__id__": 585
},
"_enabled": true,
"_materials": [
@@ -27529,16 +28259,16 @@
"_name": "exit",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 572
+ "__id__": 588
},
{
- "__id__": 573
+ "__id__": 589
}
],
"_prefab": null,
@@ -27594,7 +28324,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 571
+ "__id__": 587
},
"_enabled": true,
"_materials": [
@@ -27628,7 +28358,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 571
+ "__id__": 587
},
"_enabled": true,
"_normalMaterial": null,
@@ -27637,7 +28367,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 574
+ "__id__": 590
}
],
"_N$interactable": true,
@@ -27693,14 +28423,14 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 571
+ "__id__": 587
},
"_id": "97kj3CvWxPG4M35kF1JIsf"
},
{
"__type__": "cc.ClickEvent",
"target": {
- "__id__": 565
+ "__id__": 581
},
"component": "",
"_componentId": "19d952d5kVBrLSzAIGeElFK",
@@ -27712,16 +28442,16 @@
"_name": "trya",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 576
+ "__id__": 592
},
{
- "__id__": 577
+ "__id__": 593
}
],
"_prefab": null,
@@ -27777,7 +28507,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 575
+ "__id__": 591
},
"_enabled": true,
"_materials": [
@@ -27811,7 +28541,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 575
+ "__id__": 591
},
"_enabled": true,
"_normalMaterial": null,
@@ -27820,7 +28550,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 578
+ "__id__": 594
}
],
"_N$interactable": true,
@@ -27876,14 +28606,14 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 575
+ "__id__": 591
},
"_id": "60wEETFzRPtLLU2Qraip7E"
},
{
"__type__": "cc.ClickEvent",
"target": {
- "__id__": 565
+ "__id__": 581
},
"component": "",
"_componentId": "19d952d5kVBrLSzAIGeElFK",
@@ -27895,23 +28625,23 @@
"_name": "btn",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [
{
- "__id__": 580
+ "__id__": 596
}
],
"_active": true,
"_components": [
{
- "__id__": 582
+ "__id__": 598
},
{
- "__id__": 583
+ "__id__": 599
},
{
- "__id__": 585
+ "__id__": 601
}
],
"_prefab": null,
@@ -27967,13 +28697,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 579
+ "__id__": 595
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 581
+ "__id__": 597
}
],
"_prefab": null,
@@ -28029,7 +28759,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 580
+ "__id__": 596
},
"_enabled": true,
"_materials": [
@@ -28059,7 +28789,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 579
+ "__id__": 595
},
"_enabled": true,
"_materials": [
@@ -28093,7 +28823,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 579
+ "__id__": 595
},
"_enabled": true,
"_normalMaterial": null,
@@ -28102,7 +28832,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 584
+ "__id__": 600
}
],
"_N$interactable": true,
@@ -28158,7 +28888,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 579
+ "__id__": 595
},
"_id": "24dgt8oDxESJcfVjgdLoZY"
},
@@ -28177,7 +28907,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 579
+ "__id__": 595
},
"_enabled": true,
"_id": "4bRL3qYrVAv5dRBgfVjrQC"
@@ -28187,13 +28917,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 587
+ "__id__": 603
}
],
"_prefab": null,
@@ -28249,7 +28979,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 586
+ "__id__": 602
},
"_enabled": true,
"_materials": [
@@ -28283,16 +29013,16 @@
"_name": "closeBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 589
+ "__id__": 605
},
{
- "__id__": 590
+ "__id__": 606
}
],
"_prefab": null,
@@ -28348,7 +29078,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 588
+ "__id__": 604
},
"_enabled": true,
"_materials": [
@@ -28382,7 +29112,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 588
+ "__id__": 604
},
"_enabled": true,
"_normalMaterial": null,
@@ -28391,7 +29121,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 591
+ "__id__": 607
}
],
"_N$interactable": true,
@@ -28447,7 +29177,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 588
+ "__id__": 604
},
"_id": "bc//MpLz5OY6QGyDZRN589"
},
@@ -28466,13 +29196,13 @@
"_name": "yinyue1",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 593
+ "__id__": 609
}
],
"_prefab": null,
@@ -28528,7 +29258,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 592
+ "__id__": 608
},
"_enabled": true,
"_materials": [
@@ -28562,13 +29292,13 @@
"_name": "zhendong1",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 595
+ "__id__": 611
}
],
"_prefab": null,
@@ -28624,7 +29354,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 594
+ "__id__": 610
},
"_enabled": true,
"_materials": [
@@ -28658,13 +29388,13 @@
"_name": "yinxiao",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 597
+ "__id__": 613
}
],
"_prefab": null,
@@ -28720,7 +29450,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 596
+ "__id__": 612
},
"_enabled": true,
"_materials": [
@@ -28754,20 +29484,20 @@
"_name": "bg",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [
{
- "__id__": 599
+ "__id__": 615
},
{
- "__id__": 601
+ "__id__": 617
}
],
"_active": true,
"_components": [
{
- "__id__": 603
+ "__id__": 619
}
],
"_prefab": null,
@@ -28823,13 +29553,13 @@
"_name": "open",
"_objFlags": 0,
"_parent": {
- "__id__": 598
+ "__id__": 614
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 600
+ "__id__": 616
}
],
"_prefab": null,
@@ -28885,7 +29615,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 599
+ "__id__": 615
},
"_enabled": true,
"_materials": [
@@ -28919,13 +29649,13 @@
"_name": "close",
"_objFlags": 0,
"_parent": {
- "__id__": 598
+ "__id__": 614
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 602
+ "__id__": 618
}
],
"_prefab": null,
@@ -28981,7 +29711,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 601
+ "__id__": 617
},
"_enabled": true,
"_materials": [
@@ -29015,7 +29745,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 598
+ "__id__": 614
},
"_enabled": true,
"_normalMaterial": null,
@@ -29079,11 +29809,11 @@
"_N$isChecked": false,
"toggleGroup": null,
"checkMark": {
- "__id__": 602
+ "__id__": 618
},
"checkEvents": [
{
- "__id__": 604
+ "__id__": 620
}
],
"_id": "4bv6Txm/tOTpDb9nfNgn+c"
@@ -29091,7 +29821,7 @@
{
"__type__": "cc.ClickEvent",
"target": {
- "__id__": 565
+ "__id__": 581
},
"component": "",
"_componentId": "19d952d5kVBrLSzAIGeElFK",
@@ -29103,20 +29833,20 @@
"_name": "bg",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [
{
- "__id__": 606
+ "__id__": 622
},
{
- "__id__": 608
+ "__id__": 624
}
],
"_active": true,
"_components": [
{
- "__id__": 610
+ "__id__": 626
}
],
"_prefab": null,
@@ -29172,13 +29902,13 @@
"_name": "open",
"_objFlags": 0,
"_parent": {
- "__id__": 605
+ "__id__": 621
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 607
+ "__id__": 623
}
],
"_prefab": null,
@@ -29234,7 +29964,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 606
+ "__id__": 622
},
"_enabled": true,
"_materials": [
@@ -29268,13 +29998,13 @@
"_name": "close",
"_objFlags": 0,
"_parent": {
- "__id__": 605
+ "__id__": 621
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 609
+ "__id__": 625
}
],
"_prefab": null,
@@ -29330,7 +30060,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 608
+ "__id__": 624
},
"_enabled": true,
"_materials": [
@@ -29364,7 +30094,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 605
+ "__id__": 621
},
"_enabled": true,
"_normalMaterial": null,
@@ -29428,11 +30158,11 @@
"_N$isChecked": false,
"toggleGroup": null,
"checkMark": {
- "__id__": 609
+ "__id__": 625
},
"checkEvents": [
{
- "__id__": 611
+ "__id__": 627
}
],
"_id": "175VURfcRMZ4U0/08yWOOS"
@@ -29440,7 +30170,7 @@
{
"__type__": "cc.ClickEvent",
"target": {
- "__id__": 565
+ "__id__": 581
},
"component": "",
"_componentId": "19d952d5kVBrLSzAIGeElFK",
@@ -29452,20 +30182,20 @@
"_name": "bg",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [
{
- "__id__": 613
+ "__id__": 629
},
{
- "__id__": 615
+ "__id__": 631
}
],
"_active": true,
"_components": [
{
- "__id__": 617
+ "__id__": 633
}
],
"_prefab": null,
@@ -29521,13 +30251,13 @@
"_name": "open",
"_objFlags": 0,
"_parent": {
- "__id__": 612
+ "__id__": 628
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 614
+ "__id__": 630
}
],
"_prefab": null,
@@ -29583,7 +30313,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 613
+ "__id__": 629
},
"_enabled": true,
"_materials": [
@@ -29617,13 +30347,13 @@
"_name": "close",
"_objFlags": 0,
"_parent": {
- "__id__": 612
+ "__id__": 628
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 616
+ "__id__": 632
}
],
"_prefab": null,
@@ -29679,7 +30409,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 615
+ "__id__": 631
},
"_enabled": true,
"_materials": [
@@ -29713,7 +30443,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 612
+ "__id__": 628
},
"_enabled": true,
"_normalMaterial": null,
@@ -29777,11 +30507,11 @@
"_N$isChecked": false,
"toggleGroup": null,
"checkMark": {
- "__id__": 616
+ "__id__": 632
},
"checkEvents": [
{
- "__id__": 618
+ "__id__": 634
}
],
"_id": "268X0b2xRIKIqgyz4MaBdG"
@@ -29789,7 +30519,7 @@
{
"__type__": "cc.ClickEvent",
"target": {
- "__id__": 565
+ "__id__": 581
},
"component": "",
"_componentId": "19d952d5kVBrLSzAIGeElFK",
@@ -29801,23 +30531,23 @@
"_name": "pauseTs",
"_objFlags": 0,
"_parent": {
- "__id__": 565
+ "__id__": 581
},
"_children": [
{
- "__id__": 620
+ "__id__": 636
},
{
- "__id__": 624
+ "__id__": 640
},
{
- "__id__": 629
+ "__id__": 645
}
],
"_active": false,
"_components": [
{
- "__id__": 660
+ "__id__": 676
}
],
"_prefab": null,
@@ -29873,19 +30603,19 @@
"_name": "New Sprite(Splash)",
"_objFlags": 0,
"_parent": {
- "__id__": 619
+ "__id__": 635
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 621
+ "__id__": 637
},
{
- "__id__": 622
+ "__id__": 638
},
{
- "__id__": 623
+ "__id__": 639
}
],
"_prefab": null,
@@ -29941,7 +30671,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 620
+ "__id__": 636
},
"_enabled": true,
"_materials": [
@@ -29973,7 +30703,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 620
+ "__id__": 636
},
"_enabled": true,
"alignMode": 1,
@@ -30000,7 +30730,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 620
+ "__id__": 636
},
"_enabled": true,
"_id": "c8PKNIvwRO3rt0Tp1BxG0m"
@@ -30010,17 +30740,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 619
+ "__id__": 635
},
"_children": [
{
- "__id__": 625
+ "__id__": 641
}
],
"_active": true,
"_components": [
{
- "__id__": 628
+ "__id__": 644
}
],
"_prefab": null,
@@ -30076,16 +30806,16 @@
"_name": "closet",
"_objFlags": 0,
"_parent": {
- "__id__": 624
+ "__id__": 640
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 626
+ "__id__": 642
},
{
- "__id__": 627
+ "__id__": 643
}
],
"_prefab": null,
@@ -30141,7 +30871,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 625
+ "__id__": 641
},
"_enabled": true,
"_materials": [
@@ -30175,7 +30905,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 625
+ "__id__": 641
},
"_enabled": true,
"_normalMaterial": null,
@@ -30238,7 +30968,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 625
+ "__id__": 641
},
"_id": "84YaPQK8dO/q/lnhNJcwW2"
},
@@ -30247,7 +30977,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 624
+ "__id__": 640
},
"_enabled": true,
"_materials": [
@@ -30279,32 +31009,32 @@
"_name": "Health",
"_objFlags": 0,
"_parent": {
- "__id__": 619
+ "__id__": 635
},
"_children": [
- {
- "__id__": 630
- },
- {
- "__id__": 632
- },
- {
- "__id__": 636
- },
- {
- "__id__": 642
- },
{
"__id__": 646
},
{
- "__id__": 650
+ "__id__": 648
},
{
- "__id__": 654
+ "__id__": 652
},
{
"__id__": 658
+ },
+ {
+ "__id__": 662
+ },
+ {
+ "__id__": 666
+ },
+ {
+ "__id__": 670
+ },
+ {
+ "__id__": 674
}
],
"_active": true,
@@ -30362,13 +31092,13 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 629
+ "__id__": 645
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 631
+ "__id__": 647
}
],
"_prefab": null,
@@ -30424,7 +31154,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 630
+ "__id__": 646
},
"_enabled": true,
"_materials": [
@@ -30458,17 +31188,17 @@
"_name": "yuandi",
"_objFlags": 0,
"_parent": {
- "__id__": 629
+ "__id__": 645
},
"_children": [
{
- "__id__": 633
+ "__id__": 649
}
],
"_active": true,
"_components": [
{
- "__id__": 635
+ "__id__": 651
}
],
"_prefab": null,
@@ -30524,13 +31254,13 @@
"_name": "guang",
"_objFlags": 0,
"_parent": {
- "__id__": 632
+ "__id__": 648
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 634
+ "__id__": 650
}
],
"_prefab": null,
@@ -30586,7 +31316,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 633
+ "__id__": 649
},
"_enabled": true,
"_materials": [
@@ -30618,7 +31348,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 632
+ "__id__": 648
},
"_enabled": true,
"_materials": [
@@ -30650,20 +31380,20 @@
"_name": "boom_show",
"_objFlags": 0,
"_parent": {
- "__id__": 629
+ "__id__": 645
},
"_children": [
{
- "__id__": 637
+ "__id__": 653
},
{
- "__id__": 639
+ "__id__": 655
}
],
"_active": true,
"_components": [
{
- "__id__": 641
+ "__id__": 657
}
],
"_prefab": null,
@@ -30719,13 +31449,13 @@
"_name": "hp_-",
"_objFlags": 0,
"_parent": {
- "__id__": 636
+ "__id__": 652
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 638
+ "__id__": 654
}
],
"_prefab": null,
@@ -30781,7 +31511,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 637
+ "__id__": 653
},
"_enabled": true,
"_materials": [
@@ -30815,13 +31545,13 @@
"_name": "hp_1",
"_objFlags": 0,
"_parent": {
- "__id__": 636
+ "__id__": 652
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 640
+ "__id__": 656
}
],
"_prefab": null,
@@ -30877,7 +31607,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 639
+ "__id__": 655
},
"_enabled": true,
"_materials": [
@@ -30911,7 +31641,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 636
+ "__id__": 652
},
"_enabled": true,
"_materials": [
@@ -30945,16 +31675,16 @@
"_name": "homeBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 629
+ "__id__": 645
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 643
+ "__id__": 659
},
{
- "__id__": 644
+ "__id__": 660
}
],
"_prefab": null,
@@ -31010,7 +31740,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 642
+ "__id__": 658
},
"_enabled": true,
"_materials": [
@@ -31044,7 +31774,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 642
+ "__id__": 658
},
"_enabled": true,
"_normalMaterial": null,
@@ -31053,7 +31783,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 645
+ "__id__": 661
}
],
"_N$interactable": true,
@@ -31109,14 +31839,14 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 642
+ "__id__": 658
},
"_id": "8cOgt0BzNKh6DAMeApvmL1"
},
{
"__type__": "cc.ClickEvent",
"target": {
- "__id__": 565
+ "__id__": 581
},
"component": "",
"_componentId": "19d952d5kVBrLSzAIGeElFK",
@@ -31128,16 +31858,16 @@
"_name": "timeBtn",
"_objFlags": 0,
"_parent": {
- "__id__": 629
+ "__id__": 645
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 647
+ "__id__": 663
},
{
- "__id__": 648
+ "__id__": 664
}
],
"_prefab": null,
@@ -31193,7 +31923,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 646
+ "__id__": 662
},
"_enabled": true,
"_materials": [
@@ -31222,698 +31952,6 @@
},
"_id": "99J5F38JNMx6cWthv6zXU6"
},
- {
- "__type__": "cc.Button",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 646
- },
- "_enabled": true,
- "_normalMaterial": null,
- "_grayMaterial": null,
- "duration": 0.1,
- "zoomScale": 1.1,
- "clickEvents": [
- {
- "__id__": 649
- }
- ],
- "_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__": 646
- },
- "_id": "17JyD8igFDkqr7xwpdwqjn"
- },
- {
- "__type__": "cc.ClickEvent",
- "target": {
- "__id__": 565
- },
- "component": "",
- "_componentId": "19d952d5kVBrLSzAIGeElFK",
- "handler": "cancelExit",
- "customEventData": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "return",
- "_objFlags": 0,
- "_parent": {
- "__id__": 629
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 651
- },
- {
- "__id__": 652
- }
- ],
- "_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__": 650
- },
- "_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__": 650
- },
- "_enabled": true,
- "_normalMaterial": null,
- "_grayMaterial": null,
- "duration": 0.1,
- "zoomScale": 1.1,
- "clickEvents": [
- {
- "__id__": 653
- }
- ],
- "_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__": 650
- },
- "_id": "0bvYtuHVZF0qYnTSZnyojv"
- },
- {
- "__type__": "cc.ClickEvent",
- "target": {
- "__id__": 15
- },
- "component": "",
- "_componentId": "2234assp7RIvpDgrnqljp2R",
- "handler": "returnHome",
- "customEventData": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "queding",
- "_objFlags": 0,
- "_parent": {
- "__id__": 629
- },
- "_children": [],
- "_active": false,
- "_components": [
- {
- "__id__": 655
- },
- {
- "__id__": 656
- }
- ],
- "_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__": 654
- },
- "_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__": 654
- },
- "_enabled": true,
- "_normalMaterial": null,
- "_grayMaterial": null,
- "duration": 0.1,
- "zoomScale": 1.1,
- "clickEvents": [
- {
- "__id__": 657
- }
- ],
- "_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__": 654
- },
- "_id": "c3JfotjQ1BzoiA+3bn0sgx"
- },
- {
- "__type__": "cc.ClickEvent",
- "target": {
- "__id__": 565
- },
- "component": "",
- "_componentId": "19d952d5kVBrLSzAIGeElFK",
- "handler": "clickRestart",
- "customEventData": "hp"
- },
- {
- "__type__": "cc.Node",
- "_name": "result_title4",
- "_objFlags": 0,
- "_parent": {
- "__id__": 629
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 659
- }
- ],
- "_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__": 658
- },
- "_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__": 619
- },
- "_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__": "19d952d5kVBrLSzAIGeElFK",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 565
- },
- "_enabled": true,
- "music": {
- "__id__": 598
- },
- "effect": {
- "__id__": 605
- },
- "vibrate": {
- "__id__": 612
- },
- "exit": {
- "__id__": 619
- },
- "_id": "ef3nVp8O9FlpWYPlCYo9pA"
- },
- {
- "__type__": "cc.Node",
- "_name": "return",
- "_objFlags": 0,
- "_parent": {
- "__id__": 544
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 663
- },
- {
- "__id__": 664
- }
- ],
- "_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__": 662
- },
- "_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": "",
@@ -31986,30 +32024,33 @@
"_N$target": {
"__id__": 662
},
- "_id": "46P35ucclP8p9BnaDyBDpD"
+ "_id": "17JyD8igFDkqr7xwpdwqjn"
},
{
"__type__": "cc.ClickEvent",
"target": {
- "__id__": 15
+ "__id__": 581
},
"component": "",
- "_componentId": "2234assp7RIvpDgrnqljp2R",
- "handler": "returnHome",
+ "_componentId": "19d952d5kVBrLSzAIGeElFK",
+ "handler": "cancelExit",
"customEventData": ""
},
{
"__type__": "cc.Node",
- "_name": "result_title4",
+ "_name": "return",
"_objFlags": 0,
"_parent": {
- "__id__": 544
+ "__id__": 645
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 667
+ },
+ {
+ "__id__": 668
}
],
"_prefab": null,
@@ -32023,7 +32064,368 @@
},
"_contentSize": {
"__type__": "cc.Size",
- "width": 363,
+ "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__": 666
+ },
+ "_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__": 666
+ },
+ "_enabled": true,
+ "_normalMaterial": null,
+ "_grayMaterial": null,
+ "duration": 0.1,
+ "zoomScale": 1.1,
+ "clickEvents": [
+ {
+ "__id__": 669
+ }
+ ],
+ "_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__": 666
+ },
+ "_id": "0bvYtuHVZF0qYnTSZnyojv"
+ },
+ {
+ "__type__": "cc.ClickEvent",
+ "target": {
+ "__id__": 15
+ },
+ "component": "",
+ "_componentId": "2234assp7RIvpDgrnqljp2R",
+ "handler": "returnHome",
+ "customEventData": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "queding",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 645
+ },
+ "_children": [],
+ "_active": false,
+ "_components": [
+ {
+ "__id__": 671
+ },
+ {
+ "__id__": 672
+ }
+ ],
+ "_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__": 670
+ },
+ "_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__": 670
+ },
+ "_enabled": true,
+ "_normalMaterial": null,
+ "_grayMaterial": null,
+ "duration": 0.1,
+ "zoomScale": 1.1,
+ "clickEvents": [
+ {
+ "__id__": 673
+ }
+ ],
+ "_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__": 670
+ },
+ "_id": "c3JfotjQ1BzoiA+3bn0sgx"
+ },
+ {
+ "__type__": "cc.ClickEvent",
+ "target": {
+ "__id__": 581
+ },
+ "component": "",
+ "_componentId": "19d952d5kVBrLSzAIGeElFK",
+ "handler": "clickRestart",
+ "customEventData": "hp"
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "result_title4",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 645
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 675
+ }
+ ],
+ "_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": {
@@ -32058,14 +32460,14 @@
"_is3DNode": false,
"_groupIndex": 0,
"groupIndex": 0,
- "_id": "f7ECEqCYNDCp/1T+t9UKiw"
+ "_id": "17ZkkDb4tCVZCZ3hwwxFUq"
},
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 666
+ "__id__": 674
},
"_enabled": true,
"_materials": [
@@ -32076,7 +32478,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "d87325df-9475-4450-a687-6d334e15ba83"
+ "__uuid__": "515197c3-1b04-4ef9-aa31-bfc11ffc3856"
},
"_type": 0,
"_sizeMode": 1,
@@ -32092,14 +32494,14 @@
"_atlas": {
"__uuid__": "52d3eb5b-948f-403a-aafa-1c8f1a40a8c8"
},
- "_id": "6cYm1H7vxAEru6BWhzSmhp"
+ "_id": "193Ty5uo5A+7+1MQqnmUb4"
},
{
"__type__": "cc.Widget",
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 340
+ "__id__": 635
},
"_enabled": true,
"alignMode": 1,
@@ -32107,8 +32509,8 @@
"_alignFlags": 45,
"_left": 0,
"_right": 0,
- "_top": 0,
- "_bottom": 0,
+ "_top": 39.26000000000004,
+ "_bottom": -39.26000000000004,
"_verticalCenter": 0,
"_horizontalCenter": 0,
"_isAbsLeft": true,
@@ -32119,34 +32521,29 @@
"_isAbsVerticalCenter": true,
"_originalWidth": 1080,
"_originalHeight": 1920,
- "_id": "ac2KaDMF5ILKohslMrRu2N"
+ "_id": "deTTX6UMpP6b/dqtb1N2ic"
},
{
- "__type__": "cc.Widget",
+ "__type__": "19d952d5kVBrLSzAIGeElFK",
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 7
+ "__id__": 581
},
"_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"
+ "music": {
+ "__id__": 614
+ },
+ "effect": {
+ "__id__": 621
+ },
+ "vibrate": {
+ "__id__": 628
+ },
+ "exit": {
+ "__id__": 635
+ },
+ "_id": "ef3nVp8O9FlpWYPlCYo9pA"
},
{
"__type__": "cc.Node",
@@ -32157,16 +32554,16 @@
},
"_children": [
{
- "__id__": 671
+ "__id__": 679
}
],
"_active": false,
"_components": [
{
- "__id__": 674
+ "__id__": 682
},
{
- "__id__": 675
+ "__id__": 683
}
],
"_prefab": null,
@@ -32222,16 +32619,16 @@
"_name": "New Sprite(Splash)",
"_objFlags": 0,
"_parent": {
- "__id__": 670
+ "__id__": 678
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 672
+ "__id__": 680
},
{
- "__id__": 673
+ "__id__": 681
}
],
"_prefab": null,
@@ -32287,7 +32684,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 671
+ "__id__": 679
},
"_enabled": true,
"_materials": [
@@ -32319,7 +32716,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 671
+ "__id__": 679
},
"_enabled": true,
"_id": "4fwjz1lnFLD45L1lqUY038"
@@ -32329,7 +32726,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 670
+ "__id__": 678
},
"_enabled": true,
"_materials": [
@@ -32371,7 +32768,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 670
+ "__id__": 678
},
"_enabled": false,
"_id": "00qpMLeBFNhYRX9r3QZvyP"
@@ -32443,13 +32840,13 @@
"__id__": 75
},
"level": {
- "__id__": 312
+ "__id__": 321
},
"timeCoin": {
- "__id__": 412
+ "__id__": 420
},
"winCoin": {
- "__id__": 328
+ "__id__": 307
},
"Block_Array": [],
"Wall_Prefab": [],
@@ -32476,7 +32873,7 @@
"_active": true,
"_components": [
{
- "__id__": 681
+ "__id__": 689
}
],
"_prefab": null,
@@ -32532,7 +32929,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 680
+ "__id__": 688
},
"_enabled": true,
"_materials": [
diff --git a/assets/Script/Map.ts b/assets/Script/Map.ts
index ac61338..30d4ee5 100644
--- a/assets/Script/Map.ts
+++ b/assets/Script/Map.ts
@@ -88,7 +88,9 @@ export default class MapConroler extends cc.Component {
@property(cc.Node)
coinPop: cc.Node = null;
-
+ //结算界面节点
+ @property(cc.Node)
+ gameOverNode: cc.Node = null;
timeLabel: cc.Node = null;
levelLabel: cc.Node = null;
coin: cc.Node = null;
@@ -134,7 +136,7 @@ export default class MapConroler extends cc.Component {
SceneManager: any; //场景管理器
lastMagicTime: number; //上次使用魔法的时间
wall_Pass: any; //可通过门的数组
-
+ arr: any;
// mapInfo: number[][] = [];
@@ -174,7 +176,7 @@ export default class MapConroler extends cc.Component {
this.new_item = 0;
this.count_Time = 0;
this.add_Time = 0;
-
+ this.arr = []; // 初始化结算界面动画数组
//this.iceLabel.string = cc.fx.GameConfig.GM_INFO.freezeAmount.toString();
// this.hammerLabel.string = cc.fx.GameConfig.GM_INFO.hammerAmount.toString();
@@ -1556,6 +1558,7 @@ export default class MapConroler extends cc.Component {
this.check_NewMode();
setTimeout(() => {
this.node.parent.parent.getChildByName("Win").active = true;
+ this.Settlement();
}, 660);
// console.log("游戏成功");
}
@@ -1582,11 +1585,11 @@ export default class MapConroler extends cc.Component {
winLevel() {
MiniGameSdk.API.showToast(cc.fx.GameConfig.GM_INFO.level);
- if (this.node.parent.parent.getChildByName("Win").
+ if (this.node.parent.parent.getChildByName("Win").getChildByName("tween").
getChildByName("nextBtn").getComponent("btnControl")._touch == false) {
return;
}
- this.node.parent.parent.getChildByName("Win").
+ 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);
@@ -1595,8 +1598,9 @@ export default class MapConroler extends cc.Component {
cc.fx.GameConfig.GM_INFO.level = 249;
MiniGameSdk.API.showToast("每周更新,敬请期待!");
setTimeout(() => {
- this.node.parent.parent.getChildByName("Win").
+ this.node.parent.parent.getChildByName("Win").getChildByName("tween").
getChildByName("nextBtn").getComponent("btnControl").setTouch(true);
+
}, 500);
}
@@ -2932,6 +2936,176 @@ export default class MapConroler extends cc.Component {
}
+ //结算界面
+ Settlement() {
+ //获取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, { 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(() => {
+ nextBtn.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' })
+ .call(() => {
+ this.playDecorationGroup();
+ })
+ .to(0.3, { 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, { 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.15)
+ .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();
+ }
+
+
update(dt) {
}
diff --git a/assets/UI/UI/pop/20miao.png b/assets/UI/UI/pop/20miao.png
deleted file mode 100644
index c6db8ce..0000000
Binary files a/assets/UI/UI/pop/20miao.png and /dev/null differ
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..fc3c4fb
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/pop/20miao.png.meta b/assets/UI/UI/skin_month/caidai4.png.meta
similarity index 61%
rename from assets/UI/UI/pop/20miao.png.meta
rename to assets/UI/UI/skin_month/caidai4.png.meta
index d9390b8..86c10a2 100644
--- a/assets/UI/UI/pop/20miao.png.meta
+++ b/assets/UI/UI/skin_month/caidai4.png.meta
@@ -1,6 +1,6 @@
{
"ver": "2.3.7",
- "uuid": "6c40cbf2-4b4a-4820-ad72-7d6adbb535b6",
+ "uuid": "7520519c-8e98-4c9c-ac56-3f518c32ebba",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
@@ -8,26 +8,26 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
- "width": 255,
- "height": 70,
+ "width": 2032,
+ "height": 1856,
"platformSettings": {},
"subMetas": {
- "20miao": {
+ "caidai4": {
"ver": "1.0.6",
- "uuid": "f8aa8e26-7f6f-4e4f-99ff-ae11c9245071",
+ "uuid": "927e609e-04b5-4b5c-aba1-a2e9ba10308f",
"importer": "sprite-frame",
- "rawTextureUuid": "6c40cbf2-4b4a-4820-ad72-7d6adbb535b6",
+ "rawTextureUuid": "7520519c-8e98-4c9c-ac56-3f518c32ebba",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
- "offsetY": 0,
+ "offsetY": 1,
"trimX": 0,
"trimY": 0,
- "width": 255,
- "height": 70,
- "rawWidth": 255,
- "rawHeight": 70,
+ "width": 2032,
+ "height": 1854,
+ "rawWidth": 2032,
+ "rawHeight": 1856,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
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..eefa4f0
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/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