demo2
This commit is contained in:
@@ -0,0 +1,104 @@
|
||||
:root {
|
||||
--canvas: #101419;
|
||||
--panel: #20282f;
|
||||
--panel-strong: #2b343c;
|
||||
--cyan: #54d5e8;
|
||||
--amber: #f1aa3e;
|
||||
--red: #e65745;
|
||||
--text: #edf2f4;
|
||||
--muted: #9eabb2;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.safe-area, .screen { position: absolute; left: 0; right: 0; top: 0; bottom: 0; }
|
||||
.screen { background-color: var(--canvas); }
|
||||
.hidden { display: none; }
|
||||
.title-screen { overflow: hidden; }
|
||||
.title-background { position: absolute; left: 0; right: 0; top: 0; bottom: 0; -unity-background-scale-mode: scale-and-crop; }
|
||||
.title-shade { position: absolute; left: 0; right: 0; top: 0; bottom: 0; background-color: rgba(5, 8, 10, 0.68); }
|
||||
.title-content { position: absolute; left: 6%; top: 10%; bottom: 7%; width: 48%; justify-content: flex-end; }
|
||||
.title-heading { font-size: 92px; -unity-font-style: bold; color: var(--text); margin-bottom: 8px; }
|
||||
.title-subtitle { font-size: 26px; color: var(--cyan); margin-bottom: 46px; white-space: normal; }
|
||||
.title-actions { width: 420px; max-width: 100%; }
|
||||
|
||||
.button, .icon-button, .top-button, .bottom-button, .machine-button, .rule-up {
|
||||
height: 56px;
|
||||
margin-bottom: 10px;
|
||||
border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom-width: 1px;
|
||||
border-left-color: #47535c; border-right-color: #47535c; border-top-color: #47535c; border-bottom-color: #47535c;
|
||||
border-radius: 4px;
|
||||
background-color: var(--panel-strong);
|
||||
color: var(--text);
|
||||
font-size: 18px;
|
||||
-unity-font-style: bold;
|
||||
}
|
||||
.button:hover, .top-button:hover, .bottom-button:hover, .machine-button:hover, .rule-up:hover, .icon-button:hover { background-color: #39454e; border-left-color: var(--cyan); border-right-color: var(--cyan); border-top-color: var(--cyan); border-bottom-color: var(--cyan); }
|
||||
.button:active, .top-button:active, .bottom-button:active, .machine-button:active, .rule-up:active, .icon-button:active { background-color: #151b20; }
|
||||
.button-large { height: 68px; font-size: 22px; }
|
||||
.button-primary { background-color: var(--amber); color: var(--canvas); border-left-color: #ffc66d; border-right-color: #ffc66d; border-top-color: #ffc66d; border-bottom-color: #ffc66d; }
|
||||
.button-cyan { background-color: var(--cyan); color: var(--canvas); border-left-color: #9aedf7; border-right-color: #9aedf7; border-top-color: #9aedf7; border-bottom-color: #9aedf7; }
|
||||
.button-quiet { height: 46px; }
|
||||
.danger-button { background-color: var(--red); color: white; border-left-color: #ff8577; border-right-color: #ff8577; border-top-color: #ff8577; border-bottom-color: #ff8577; }
|
||||
.ip-input { height: 52px; margin-bottom: 10px; background-color: var(--panel-strong); color: var(--text); font-size: 18px; border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom-width: 1px; border-left-color: #47535c; border-right-color: #47535c; border-top-color: #47535c; border-bottom-color: #47535c; border-radius: 4px; }
|
||||
.ip-input .unity-base-text-field__input { background-color: transparent; color: var(--text); padding-left: 12px; }
|
||||
|
||||
.header-bar { height: 82px; flex-direction: row; align-items: center; background-color: var(--panel-strong); padding-left: 22px; padding-right: 22px; }
|
||||
.icon-button { width: 64px; height: 50px; margin: 0 28px 0 0; font-size: 28px; }
|
||||
.header-title { font-size: 36px; -unity-font-style: bold; }
|
||||
.lobby-status { position: absolute; left: 12%; right: 12%; top: 18%; height: 60px; color: var(--cyan); font-size: 24px; -unity-text-align: middle-center; }
|
||||
.lobby-players { position: absolute; left: 18%; right: 18%; top: 34%; bottom: 33%; font-size: 32px; white-space: normal; }
|
||||
.lobby-actions { position: absolute; left: 25%; right: 25%; bottom: 12%; height: 72px; flex-direction: row; }
|
||||
.lobby-actions .button { flex-grow: 1; margin-left: 8px; margin-right: 8px; }
|
||||
|
||||
.factory-screen { background-color: rgba(0, 0, 0, 0); }
|
||||
.grid-input-surface { position: absolute; left: 280px; right: 360px; top: 74px; bottom: 128px; background-color: rgba(0, 0, 0, 0); }
|
||||
.top-bar { position: absolute; left: 0; right: 0; top: 0; height: 74px; flex-direction: row; align-items: center; background-color: var(--panel-strong); padding-left: 16px; padding-right: 8px; }
|
||||
.top-stat { height: 74px; -unity-text-align: middle-center; font-size: 20px; white-space: nowrap; overflow: hidden; }
|
||||
.core-stat { width: 12%; -unity-text-align: middle-left; -unity-font-style: bold; }
|
||||
.money-stat { width: 12%; color: var(--amber); }
|
||||
.phase-stat { width: 17%; color: var(--cyan); -unity-font-style: bold; }
|
||||
.timer-stat { width: 7%; font-size: 25px; -unity-font-style: bold; }
|
||||
.network-stat { flex-grow: 1; color: var(--muted); font-size: 15px; }
|
||||
.top-button { height: 48px; min-width: 68px; margin: 0 4px 0 0; }
|
||||
.compact-button { min-width: 48px; width: 50px; font-size: 16px; }
|
||||
.panel { position: absolute; top: 74px; bottom: 128px; background-color: var(--panel); border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom-width: 1px; border-left-color: #35414a; border-right-color: #35414a; border-top-color: #35414a; border-bottom-color: #35414a; }
|
||||
.left-panel { left: 0; width: 280px; padding: 12px; }
|
||||
.right-panel { right: 0; width: 360px; padding: 12px; }
|
||||
.panel-title { height: 42px; font-size: 24px; -unity-font-style: bold; -unity-text-align: middle-left; }
|
||||
.build-palette { flex-grow: 1; }
|
||||
.build-palette .unity-scroll-view__content-container { padding-right: 4px; }
|
||||
.machine-button { height: 68px; flex-direction: row; align-items: center; justify-content: flex-start; padding-left: 6px; margin-bottom: 7px; }
|
||||
.machine-icon { width: 52px; height: 52px; margin-right: 10px; -unity-background-scale-mode: scale-to-fit; }
|
||||
.machine-button Label { font-size: 17px; -unity-font-style: bold; color: var(--text); }
|
||||
.selected-machine { border-left-width: 3px; border-left-color: var(--amber); background-color: #394149; }
|
||||
.selected-remove { border-left-width: 3px; border-left-color: white; }
|
||||
.target-text { height: 150px; padding: 10px; font-size: 22px; -unity-font-style: bold; white-space: normal; }
|
||||
.rules-list { flex-grow: 1; }
|
||||
.rule-slot { position: relative; flex-grow: 1; min-height: 94px; margin-bottom: 6px; padding: 10px; padding-right: 48px; background-color: var(--panel-strong); border-radius: 4px; }
|
||||
.rule-name { height: 30px; font-size: 17px; -unity-font-style: bold; overflow: hidden; }
|
||||
.rule-description { flex-grow: 1; color: var(--muted); font-size: 13px; white-space: normal; overflow: hidden; }
|
||||
.rule-up { position: absolute; right: 8px; bottom: 8px; width: 34px; height: 34px; margin: 0; font-size: 18px; }
|
||||
.cyan-text { color: var(--cyan); }
|
||||
.amber-text { color: var(--amber); }
|
||||
.bottom-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 128px; flex-direction: row; align-items: center; background-color: var(--panel-strong); padding-left: 22px; padding-right: 22px; }
|
||||
.selection-text { width: 38%; font-size: 21px; -unity-font-style: bold; white-space: normal; }
|
||||
.error-text { flex-grow: 1; color: var(--red); font-size: 16px; -unity-text-align: middle-center; white-space: normal; }
|
||||
.bottom-button { width: 150px; height: 64px; margin: 0 0 0 10px; }
|
||||
.icon-bottom-button { width: 76px; font-size: 28px; }
|
||||
|
||||
.reward-screen, .end-screen { align-items: center; justify-content: center; }
|
||||
.reward-title { position: absolute; top: 7%; left: 8%; right: 8%; height: 72px; font-size: 44px; -unity-font-style: bold; -unity-text-align: middle-center; }
|
||||
.reward-subtitle { position: absolute; top: 15%; left: 10%; right: 10%; height: 48px; font-size: 21px; color: var(--cyan); -unity-text-align: middle-center; }
|
||||
.reward-cards { position: absolute; left: 7%; right: 7%; top: 25%; bottom: 12%; flex-direction: row; }
|
||||
.reward-card { position: relative; flex-grow: 1; flex-basis: 0; margin-left: 12px; margin-right: 12px; padding: 24px; padding-top: 32px; background-color: var(--panel-strong); border-radius: 6px; border-left-width: 1px; border-right-width: 1px; border-top-width: 1px; border-bottom-width: 1px; border-left-color: #46545d; border-right-color: #46545d; border-top-color: #46545d; border-bottom-color: #46545d; }
|
||||
.card-stripe { position: absolute; left: 0; right: 0; top: 0; height: 8px; }
|
||||
.cyan-bg { background-color: var(--cyan); }
|
||||
.amber-bg { background-color: var(--amber); }
|
||||
.reward-category { height: 36px; color: var(--muted); font-size: 16px; }
|
||||
.reward-name { height: 74px; font-size: 31px; -unity-font-style: bold; white-space: normal; }
|
||||
.reward-description { flex-grow: 1; font-size: 20px; white-space: normal; color: var(--text); }
|
||||
.reward-card .button { height: 64px; margin: 0; }
|
||||
.end-title { width: 80%; font-size: 62px; -unity-font-style: bold; -unity-text-align: middle-center; white-space: normal; }
|
||||
.end-summary { width: 60%; height: 180px; font-size: 28px; color: var(--cyan); -unity-text-align: middle-center; white-space: normal; }
|
||||
.end-actions { width: 680px; max-width: 80%; height: 72px; flex-direction: row; }
|
||||
.end-actions .button { flex-grow: 1; margin-left: 8px; margin-right: 8px; }
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e5c25f68b6ac49148bedf0d85866a7b2
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
||||
@@ -0,0 +1,103 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ui:UXML xmlns:ui="UnityEngine.UIElements">
|
||||
<ui:VisualElement name="safe-area" class="safe-area">
|
||||
<ui:VisualElement name="title-screen" class="screen title-screen">
|
||||
<ui:VisualElement name="title-background" class="title-background" />
|
||||
<ui:VisualElement class="title-shade" />
|
||||
<ui:VisualElement class="title-content">
|
||||
<ui:Label text="规则工厂" class="title-heading" />
|
||||
<ui:Label text="自动化生产 × 有序规则构筑 × 炮塔波次结算" class="title-subtitle" />
|
||||
<ui:VisualElement class="title-actions">
|
||||
<ui:Button name="solo-button" text="开始单人生产" class="button button-primary button-large" />
|
||||
<ui:Button name="host-button" text="创建 LAN 房间" class="button button-cyan" />
|
||||
<ui:Button name="join-button" text="加入 LAN 房间" class="button" />
|
||||
<ui:TextField name="direct-ip-input" value="127.0.0.1" class="ip-input" />
|
||||
<ui:Button name="transport-button" text="传输:TCP" class="button button-quiet" />
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
|
||||
<ui:VisualElement name="lobby-screen" class="screen lobby-screen hidden">
|
||||
<ui:VisualElement class="header-bar">
|
||||
<ui:Button name="lobby-back-button" text="←" tooltip="返回" class="icon-button" />
|
||||
<ui:Label text="LAN 合作大厅" class="header-title" />
|
||||
</ui:VisualElement>
|
||||
<ui:Label name="lobby-status" text="offline" class="lobby-status" />
|
||||
<ui:Label name="lobby-players" text="等待房间同步…" class="lobby-players" />
|
||||
<ui:VisualElement class="lobby-actions">
|
||||
<ui:Button name="lobby-ready-button" text="准备" class="button" />
|
||||
<ui:Button name="lobby-start-button" text="Host 开始对局" class="button button-primary" />
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
|
||||
<ui:VisualElement name="factory-screen" class="screen factory-screen hidden">
|
||||
<ui:VisualElement name="grid-input-surface" class="grid-input-surface" />
|
||||
<ui:VisualElement class="top-bar">
|
||||
<ui:Label name="core-text" text="核心 ◆◆◆" class="top-stat core-stat" />
|
||||
<ui:Label name="money-text" text="资金 500" class="top-stat money-stat" />
|
||||
<ui:Label name="phase-text" text="周期 1/5 · 建造" class="top-stat phase-stat" />
|
||||
<ui:Label name="timer-text" text="01:00" class="top-stat timer-stat" />
|
||||
<ui:Label name="network-text" text="单人本地" class="top-stat network-stat" />
|
||||
<ui:Button name="ready-button" text="准备" class="top-button button-primary" />
|
||||
<ui:Button name="speed-1-button" text="1×" tooltip="正常速度" class="top-button compact-button" />
|
||||
<ui:Button name="speed-4-button" text="4×" tooltip="四倍速度" class="top-button compact-button" />
|
||||
<ui:Button name="speed-10-button" text="10×" tooltip="十倍速度" class="top-button compact-button" />
|
||||
<ui:Button name="save-button" text="存" tooltip="保存" class="top-button compact-button" />
|
||||
<ui:Button name="load-button" text="读" tooltip="读取" class="top-button compact-button" />
|
||||
<ui:Button name="exit-button" text="×" tooltip="返回标题" class="top-button compact-button danger-button" />
|
||||
</ui:VisualElement>
|
||||
|
||||
<ui:VisualElement class="left-panel panel">
|
||||
<ui:Label text="建造分类" class="panel-title" />
|
||||
<ui:ScrollView name="build-palette" class="build-palette">
|
||||
<ui:Button name="miner-button" class="machine-button"><ui:VisualElement name="miner-icon" class="machine-icon" /><ui:Label text="采集器 40" /></ui:Button>
|
||||
<ui:Button name="conveyor-button" class="machine-button"><ui:VisualElement name="conveyor-icon" class="machine-icon" /><ui:Label text="传送带 5" /></ui:Button>
|
||||
<ui:Button name="splitter-button" class="machine-button"><ui:VisualElement name="splitter-icon" class="machine-icon" /><ui:Label text="分流器 15" /></ui:Button>
|
||||
<ui:Button name="smelter-button" class="machine-button"><ui:VisualElement name="smelter-icon" class="machine-icon" /><ui:Label text="熔炼机 80" /></ui:Button>
|
||||
<ui:Button name="assembler-button" class="machine-button"><ui:VisualElement name="assembler-icon" class="machine-icon" /><ui:Label text="组装机 110" /></ui:Button>
|
||||
<ui:Button name="loader-button" class="machine-button"><ui:VisualElement name="loader-icon" class="machine-icon" /><ui:Label text="装填器 70" /></ui:Button>
|
||||
<ui:Button name="turret-button" class="machine-button"><ui:VisualElement name="turret-icon" class="machine-icon" /><ui:Label text="炮塔 150" /></ui:Button>
|
||||
<ui:Button name="generator-button" class="machine-button"><ui:VisualElement name="generator-icon" class="machine-icon" /><ui:Label text="能量站 60" /></ui:Button>
|
||||
</ui:ScrollView>
|
||||
</ui:VisualElement>
|
||||
|
||||
<ui:VisualElement class="right-panel panel">
|
||||
<ui:Label name="target-text" text="目标火力 载荷 × 倍率" class="target-text" />
|
||||
<ui:VisualElement class="rules-list">
|
||||
<ui:VisualElement class="rule-slot"><ui:Label name="rule-name-1" text="1. 空槽位" class="rule-name cyan-text" /><ui:Label name="rule-description-1" text="防守成功后选择规则" class="rule-description" /><ui:Button name="rule-up-1" text="↑" tooltip="上移" class="rule-up" /></ui:VisualElement>
|
||||
<ui:VisualElement class="rule-slot"><ui:Label name="rule-name-2" text="2. 空槽位" class="rule-name amber-text" /><ui:Label name="rule-description-2" text="防守成功后选择规则" class="rule-description" /><ui:Button name="rule-up-2" text="↑" tooltip="上移" class="rule-up" /></ui:VisualElement>
|
||||
<ui:VisualElement class="rule-slot"><ui:Label name="rule-name-3" text="3. 空槽位" class="rule-name cyan-text" /><ui:Label name="rule-description-3" text="防守成功后选择规则" class="rule-description" /><ui:Button name="rule-up-3" text="↑" tooltip="上移" class="rule-up" /></ui:VisualElement>
|
||||
<ui:VisualElement class="rule-slot"><ui:Label name="rule-name-4" text="4. 空槽位" class="rule-name amber-text" /><ui:Label name="rule-description-4" text="防守成功后选择规则" class="rule-description" /><ui:Button name="rule-up-4" text="↑" tooltip="上移" class="rule-up" /></ui:VisualElement>
|
||||
<ui:VisualElement class="rule-slot"><ui:Label name="rule-name-5" text="5. 空槽位" class="rule-name cyan-text" /><ui:Label name="rule-description-5" text="防守成功后选择规则" class="rule-description" /><ui:Button name="rule-up-5" text="↑" tooltip="上移" class="rule-up" /></ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
|
||||
<ui:VisualElement class="bottom-bar">
|
||||
<ui:Label name="selection-text" text="建造 传送带 · 朝向 0°" class="selection-text" />
|
||||
<ui:Label name="error-text" text="" class="error-text" />
|
||||
<ui:Button name="recipe-button" text="配方:无" class="bottom-button" />
|
||||
<ui:Button name="rotate-button" text="↻" tooltip="旋转" class="bottom-button icon-bottom-button" />
|
||||
<ui:Button name="remove-button" text="拆除" class="bottom-button danger-button" />
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
|
||||
<ui:VisualElement name="reward-screen" class="screen reward-screen hidden">
|
||||
<ui:Label text="选择一条规则写入流水线" class="reward-title" />
|
||||
<ui:Label text="规则严格从左到右执行,并获得一项机器效率升级" class="reward-subtitle" />
|
||||
<ui:VisualElement class="reward-cards">
|
||||
<ui:VisualElement class="reward-card"><ui:VisualElement class="card-stripe cyan-bg" /><ui:Label name="reward-category-1" text="生产链修正" class="reward-category" /><ui:Label name="reward-name-1" text="规则名" class="reward-name" /><ui:Label name="reward-description-1" text="规则说明" class="reward-description" /><ui:Button name="reward-choose-1" text="写入规则槽" class="button button-cyan" /></ui:VisualElement>
|
||||
<ui:VisualElement class="reward-card"><ui:VisualElement class="card-stripe amber-bg" /><ui:Label name="reward-category-2" text="生产链修正" class="reward-category" /><ui:Label name="reward-name-2" text="规则名" class="reward-name" /><ui:Label name="reward-description-2" text="规则说明" class="reward-description" /><ui:Button name="reward-choose-2" text="写入规则槽" class="button button-primary" /></ui:VisualElement>
|
||||
<ui:VisualElement class="reward-card"><ui:VisualElement class="card-stripe cyan-bg" /><ui:Label name="reward-category-3" text="生产链修正" class="reward-category" /><ui:Label name="reward-name-3" text="规则名" class="reward-name" /><ui:Label name="reward-description-3" text="规则说明" class="reward-description" /><ui:Button name="reward-choose-3" text="写入规则槽" class="button button-cyan" /></ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
|
||||
<ui:VisualElement name="end-screen" class="screen end-screen hidden">
|
||||
<ui:Label name="end-title" text="工厂守住了核心" class="end-title" />
|
||||
<ui:Label name="end-summary" text="" class="end-summary" />
|
||||
<ui:VisualElement class="end-actions">
|
||||
<ui:Button name="restart-button" text="重新生产" class="button button-primary" />
|
||||
<ui:Button name="title-button" text="返回模式选择" class="button" />
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
</ui:VisualElement>
|
||||
</ui:UXML>
|
||||
@@ -0,0 +1,10 @@
|
||||
fileFormatVersion: 2
|
||||
guid: da37b8ce2c9574342be5cfd5198d1f3c
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0}
|
||||
@@ -0,0 +1,38 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &11400000
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 19101, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name: Demo2PanelSettings
|
||||
m_EditorClassIdentifier:
|
||||
themeUss: {fileID: -4733365628477956816, guid: 922f45d48dd8e144c894dad399b589b1, type: 3}
|
||||
m_TargetTexture: {fileID: 0}
|
||||
m_ScaleMode: 2
|
||||
m_ReferenceSpritePixelsPerUnit: 100
|
||||
m_Scale: 1
|
||||
m_ReferenceDpi: 96
|
||||
m_FallbackDpi: 96
|
||||
m_ReferenceResolution: {x: 1920, y: 1080}
|
||||
m_ScreenMatchMode: 0
|
||||
m_Match: 0.5
|
||||
m_SortingOrder: 0
|
||||
m_TargetDisplay: 0
|
||||
m_ClearDepthStencil: 1
|
||||
m_ClearColor: 0
|
||||
m_ColorClearValue: {r: 0, g: 0, b: 0, a: 0}
|
||||
m_DynamicAtlasSettings:
|
||||
m_MinAtlasSize: 64
|
||||
m_MaxAtlasSize: 4096
|
||||
m_MaxSubTextureSize: 64
|
||||
m_ActiveFilters: 31
|
||||
m_AtlasBlitShader: {fileID: 9101, guid: 0000000000000000f000000000000000, type: 0}
|
||||
m_RuntimeShader: {fileID: 9100, guid: 0000000000000000f000000000000000, type: 0}
|
||||
m_RuntimeWorldShader: {fileID: 9102, guid: 0000000000000000f000000000000000, type: 0}
|
||||
textSettings: {fileID: 0}
|
||||
@@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 427e96e2d5105df47aaf1a47a309de98
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1 @@
|
||||
@import url("unity-theme://default");
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 922f45d48dd8e144c894dad399b589b1
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12388, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
||||
Reference in New Issue
Block a user