This commit is contained in:
parent
f15fec1357
commit
999ce2507d
|
@ -22,3 +22,4 @@
|
|||
/Assets/StreamingAssets/build_info.txt.meta
|
||||
/Assets/StreamingAssets/build_info.txt
|
||||
/10007_YanCheng_Metrology.sln
|
||||
/10007
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -4,10 +4,10 @@ using UnityEngine;
|
|||
|
||||
public class MobileAttach10007_7002 : MonoBehaviour
|
||||
{
|
||||
public static int index = 0;
|
||||
public int index = 0;
|
||||
public void OnReceiveTask(string triggerName)
|
||||
{
|
||||
if(index == 0)
|
||||
if (index == 0)
|
||||
{
|
||||
if (GameManager.ProcessMgr.IsRightSubProcessStepsTriggerID(triggerName, false) == 0)
|
||||
{
|
||||
|
|
|
@ -2,23 +2,23 @@
|
|||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class Player10007_7002 : MonoBehaviour
|
||||
public class Player10007_7002 : SingletonMono<Player10007_7002>
|
||||
{
|
||||
private int moveNum = 0;
|
||||
private Vector3 lastMovePos = new Vector3(0, 0, 0);
|
||||
public int moveNum = 0;
|
||||
public Vector3 lastMovePos = new Vector3(0, 0, 0);
|
||||
public List<GameObject> cdzList = new List<GameObject>();
|
||||
public static bool isNearCDZ = false;
|
||||
public bool isNearCDZ = false;
|
||||
private void Start()
|
||||
{
|
||||
isNearCDZ = false;
|
||||
}
|
||||
private void Update()
|
||||
{
|
||||
if(lastMovePos != this.transform.localPosition)
|
||||
if (lastMovePos != this.transform.localPosition)
|
||||
{
|
||||
lastMovePos = this.transform.localPosition;
|
||||
moveNum++;
|
||||
if(moveNum == 500)
|
||||
if (moveNum == 500)
|
||||
{
|
||||
//Debug.LogError("巡视OK");
|
||||
//GameManager.ProcessMgr.CheckSubProcessSteps(GameManager.ProcessMgr.subProcessStepId);
|
||||
|
@ -30,7 +30,7 @@ public class Player10007_7002 : MonoBehaviour
|
|||
}
|
||||
}
|
||||
//Debug.LogError(GameManager.ProcessMgr.subProcessStepId);
|
||||
if(!isNearCDZ && Score_7002.cdzIndex == 1)
|
||||
if (!isNearCDZ && Score_7002.cdzIndex == 1)
|
||||
{
|
||||
int len = cdzList.Count;
|
||||
//isNearCDZ = false;
|
||||
|
@ -49,6 +49,6 @@ public class Player10007_7002 : MonoBehaviour
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ public class Score_7002 : ScoreBase
|
|||
private Device_Control_2002 device_Control;
|
||||
public static Dictionary<int, Dictionary<int, bool[]>> xzDic = new Dictionary<int, Dictionary<int, bool[]>>();
|
||||
public static int cdzIndex = 0;
|
||||
public static List<int> scoreList = new List<int>() {0,0,0,0,0,0,0,0 ,0};
|
||||
public static List<int> scoreList;
|
||||
public static int process = 0;
|
||||
public static Dictionary<int, ScoreSubjectStep> static_steps;
|
||||
public static Action<int> SendMsg;
|
||||
|
@ -56,14 +56,14 @@ public class Score_7002 : ScoreBase
|
|||
}
|
||||
|
||||
List<ScoreSubjectStep> tmps= new List<ScoreSubjectStep>();
|
||||
tmps.Add(new ScoreSubjectStep(1, 0));
|
||||
tmps.Add(new ScoreSubjectStep(1, 5));
|
||||
tmps.Add(new ScoreSubjectStep(2, 5));
|
||||
tmps.Add(new ScoreSubjectStep(3, 0));
|
||||
tmps.Add(new ScoreSubjectStep(3, 5));
|
||||
tmps.Add(new ScoreSubjectStep(4, 5));
|
||||
tmps.Add(new ScoreSubjectStep(5, 40));
|
||||
tmps.Add(new ScoreSubjectStep(5, 30));
|
||||
tmps.Add(new ScoreSubjectStep(6, 5));
|
||||
tmps.Add(new ScoreSubjectStep(7, 45));
|
||||
tmps.Add(new ScoreSubjectStep(8, 0));
|
||||
tmps.Add(new ScoreSubjectStep(7, 40));
|
||||
tmps.Add(new ScoreSubjectStep(8, 5));
|
||||
|
||||
steps = new Dictionary<int, ScoreSubjectStep>();
|
||||
tmps.ForEach(a =>
|
||||
|
|
|
@ -36,7 +36,8 @@ public class StepState_7002 : StepState
|
|||
{
|
||||
Debug.Log("切换步骤" + num);
|
||||
//删除手里的东西
|
||||
LiveSceneManager.Instance?.OnCheckSubProcess();
|
||||
if (LiveSceneManager.Instance != null)
|
||||
LiveSceneManager.Instance.OnCheckSubProcess();
|
||||
Score_7002.process = num - 1;
|
||||
if (num == 1)
|
||||
{
|
||||
|
@ -44,12 +45,14 @@ public class StepState_7002 : StepState
|
|||
//查看任务单
|
||||
//OfficeManager.Instance.mobileController.downIndex = 0;
|
||||
PacksackBagMgr.Instance.ClearAllData();
|
||||
MobileAttach10007_7002.index = 0;
|
||||
OfficeManager.Instance.mobileController.downIndex = 0;
|
||||
OfficeManager.Instance.mobileAttch10007.index = 0;
|
||||
Score_7002.cdzIndex = 0;
|
||||
}
|
||||
else if (num == 2)
|
||||
{
|
||||
MobileAttach10007_7002.index = 1;
|
||||
OfficeManager.Instance.mobileController.downIndex = 2;
|
||||
OfficeManager.Instance.mobileAttch10007.index = 1;
|
||||
Score_7002.cdzIndex = 0;
|
||||
}
|
||||
else if (num == 3)
|
||||
|
@ -59,10 +62,12 @@ public class StepState_7002 : StepState
|
|||
else if (num == 4)
|
||||
{
|
||||
Score_7002.cdzIndex = 0;
|
||||
Player10007_7002.Instance.moveNum = 0;
|
||||
}
|
||||
else if (num == 5)
|
||||
{
|
||||
Score_7002.cdzIndex = 0;
|
||||
Player10007_7002.Instance.moveNum = 500;
|
||||
}
|
||||
else if (num == 6)
|
||||
{
|
||||
|
@ -72,7 +77,7 @@ public class StepState_7002 : StepState
|
|||
{
|
||||
Score_7002.cdzIndex = 2;
|
||||
}
|
||||
else if(num == 8)
|
||||
else if (num == 8)
|
||||
{
|
||||
GameManager.ProcessMgr.IsRightSubProcessStepsTriggerID("撤离现场", true);
|
||||
}
|
||||
|
|
|
@ -10,10 +10,10 @@ public class UI_InstallAndDismantleTicketPanel_10007_7002 : BasePanel
|
|||
/// <summary>
|
||||
/// 是否已经按确认提交
|
||||
/// </summary>
|
||||
private bool submit=false;
|
||||
private bool submit = false;
|
||||
public string triggerName;
|
||||
|
||||
|
||||
|
||||
public void Init(string triggerName)
|
||||
{
|
||||
this.triggerName = triggerName;
|
||||
|
@ -41,6 +41,30 @@ public class UI_InstallAndDismantleTicketPanel_10007_7002 : BasePanel
|
|||
}
|
||||
|
||||
private void showToogle()
|
||||
{
|
||||
CloseToggle(true);
|
||||
for (int j = 1; j <= Score_7002.xzDic[2].Count; j++)
|
||||
{
|
||||
for (int k = 0; k < Score_7002.xzDic[2][j].Length; k++)
|
||||
{
|
||||
GetControl<Toggle>("t2_" + j + "_" + k).enabled = Player10007_7002.Instance.isNearCDZ;
|
||||
}
|
||||
}
|
||||
}
|
||||
public void showToggle(int xzDicCount)
|
||||
{
|
||||
for (int j = 1; j <= Score_7002.xzDic[xzDicCount].Count; j++)
|
||||
{
|
||||
for (int k = 0; k < Score_7002.xzDic[xzDicCount][j].Length; k++)
|
||||
{
|
||||
if (Score_7002.xzDic[xzDicCount][j][k])
|
||||
{
|
||||
GetControl<Toggle>("t" + xzDicCount + "_" + j + "_" + k).isOn = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
public void CloseToggle(bool isSwitch)
|
||||
{
|
||||
for (int i = 1; i <= Score_7002.xzDic.Count; i++)
|
||||
{
|
||||
|
@ -48,20 +72,13 @@ public class UI_InstallAndDismantleTicketPanel_10007_7002 : BasePanel
|
|||
{
|
||||
for (int k = 0; k < Score_7002.xzDic[i][j].Length; k++)
|
||||
{
|
||||
if(Score_7002.xzDic[i][j][k])
|
||||
if (Score_7002.xzDic[i][j][k])
|
||||
{
|
||||
GetControl<Toggle>("t" + i + "_" + j + "_" + k).isOn = true;
|
||||
GetControl<Toggle>("t" + i + "_" + j + "_" + k).isOn = isSwitch;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
for (int j = 1; j <= Score_7002.xzDic[2].Count; j++)
|
||||
{
|
||||
for (int k = 0; k < Score_7002.xzDic[2][j].Length; k++)
|
||||
{
|
||||
GetControl<Toggle>("t2_" + j + "_" + k).enabled = Player10007_7002.isNearCDZ;
|
||||
}
|
||||
}
|
||||
}
|
||||
protected override void OnChangeToggle(string toogleName, bool isOn)
|
||||
{
|
||||
|
@ -87,7 +104,7 @@ public class UI_InstallAndDismantleTicketPanel_10007_7002 : BasePanel
|
|||
if (Score_7002.cdzIndex == 2)
|
||||
{
|
||||
ScoreManager.instance.Check(triggerName, "2");
|
||||
if(GameManager.RunModelMgr.ModeType == E_ModeType.Practice)
|
||||
if (GameManager.RunModelMgr.ModeType == E_ModeType.Practice)
|
||||
{
|
||||
GameManager.UIMgr.ShowPanel<UI_PracticeCompletedPanel>(E_UI_Layer.Mid, (p) =>
|
||||
{
|
||||
|
@ -105,7 +122,7 @@ public class UI_InstallAndDismantleTicketPanel_10007_7002 : BasePanel
|
|||
GameManager.UIMgr.HidePanel<UI_InstallAndDismantleTicketPanel_10007_7002>();
|
||||
GameManager.ProcessMgr.IsRightSubProcessStepsTriggerID("撤离现场", true);
|
||||
}
|
||||
|
||||
|
||||
break;
|
||||
case "Button_Close":
|
||||
|
||||
|
@ -183,5 +200,5 @@ public class UI_InstallAndDismantleTicketPanel_10007_7002 : BasePanel
|
|||
ClearInputFieldsInChildren(child);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: ccc531d3400e913498e4da6bf2f299ff
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 6868b9fc25494e9428751c363bf6c529
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
|
@ -0,0 +1,159 @@
|
|||
fileFormatVersion: 2
|
||||
guid: fb4d268ee32d7364bb265a735f4ad453
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 12
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMasterTextureLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 2
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 256
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: iPhone
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Windows Store Apps
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: WebGL
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
|
@ -0,0 +1,159 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 1fb4a35457b5f054ebf38ed7faef6e21
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 12
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMasterTextureLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 2
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 256
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: iPhone
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Windows Store Apps
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: WebGL
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
|
@ -0,0 +1,159 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 591890531ab45c94e854151ef5a98b64
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 12
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMasterTextureLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 2
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 256
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: iPhone
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Windows Store Apps
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: WebGL
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
|
@ -0,0 +1,159 @@
|
|||
fileFormatVersion: 2
|
||||
guid: c80a6927ebf1c3341b06f4658b618b27
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 12
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMasterTextureLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 2
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 3
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 256
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: iPhone
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Android
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: Windows Store Apps
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 3
|
||||
buildTarget: WebGL
|
||||
maxTextureSize: 8192
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
nameFileIdTable: {}
|
||||
spritePackingTag:
|
||||
pSDRemoveMatte: 0
|
||||
pSDShowRemoveMatteOption: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: e22b37ca48c9aed458857fdfa1a28bb6
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 876ecb6d94b7ace4fb883b8a69cbc72b
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 270c177641a3c464b862c2531f2ea2aa
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: e1ec63dfcc15bab47836d99d90a364a0
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -18,7 +18,7 @@ GameObject:
|
|||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
m_IsActive: 0
|
||||
--- !u!224 &1275384511
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
|
@ -121,6 +121,127 @@ MonoBehaviour:
|
|||
m_OnClick:
|
||||
m_PersistentCalls:
|
||||
m_Calls: []
|
||||
--- !u!1 &338171341745712215
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 1793972352989275953}
|
||||
- component: {fileID: 3142069528635806822}
|
||||
- component: {fileID: 8286090816662691699}
|
||||
- component: {fileID: 5356275788281390331}
|
||||
m_Layer: 5
|
||||
m_Name: restartBtn
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!224 &1793972352989275953
|
||||
RectTransform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 338171341745712215}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 6042118791799735351}
|
||||
m_RootOrder: 0
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 0, y: 0}
|
||||
m_AnchoredPosition: {x: 0, y: 0}
|
||||
m_SizeDelta: {x: 132, y: 36}
|
||||
m_Pivot: {x: 0.5, y: 0.5}
|
||||
--- !u!222 &3142069528635806822
|
||||
CanvasRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 338171341745712215}
|
||||
m_CullTransparentMesh: 1
|
||||
--- !u!114 &8286090816662691699
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 338171341745712215}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Material: {fileID: 0}
|
||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_RaycastTarget: 1
|
||||
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
|
||||
m_Maskable: 1
|
||||
m_OnCullStateChanged:
|
||||
m_PersistentCalls:
|
||||
m_Calls: []
|
||||
m_Sprite: {fileID: 21300000, guid: 1fb4a35457b5f054ebf38ed7faef6e21, type: 3}
|
||||
m_Type: 0
|
||||
m_PreserveAspect: 0
|
||||
m_FillCenter: 1
|
||||
m_FillMethod: 4
|
||||
m_FillAmount: 1
|
||||
m_FillClockwise: 1
|
||||
m_FillOrigin: 0
|
||||
m_UseSpriteMesh: 0
|
||||
m_PixelsPerUnitMultiplier: 1
|
||||
--- !u!114 &5356275788281390331
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 338171341745712215}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
m_Navigation:
|
||||
m_Mode: 3
|
||||
m_WrapAround: 0
|
||||
m_SelectOnUp: {fileID: 0}
|
||||
m_SelectOnDown: {fileID: 0}
|
||||
m_SelectOnLeft: {fileID: 0}
|
||||
m_SelectOnRight: {fileID: 0}
|
||||
m_Transition: 2
|
||||
m_Colors:
|
||||
m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||
m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
|
||||
m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
|
||||
m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
|
||||
m_ColorMultiplier: 1
|
||||
m_FadeDuration: 0.1
|
||||
m_SpriteState:
|
||||
m_HighlightedSprite: {fileID: 21300000, guid: fb4d268ee32d7364bb265a735f4ad453, type: 3}
|
||||
m_PressedSprite: {fileID: 0}
|
||||
m_SelectedSprite: {fileID: 0}
|
||||
m_DisabledSprite: {fileID: 0}
|
||||
m_AnimationTriggers:
|
||||
m_NormalTrigger: Normal
|
||||
m_HighlightedTrigger: Highlighted
|
||||
m_PressedTrigger: Pressed
|
||||
m_SelectedTrigger: Selected
|
||||
m_DisabledTrigger: Disabled
|
||||
m_Interactable: 1
|
||||
m_TargetGraphic: {fileID: 8286090816662691699}
|
||||
m_OnClick:
|
||||
m_PersistentCalls:
|
||||
m_Calls: []
|
||||
--- !u!1 &473241551733849269
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
|
@ -970,7 +1091,7 @@ RectTransform:
|
|||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 6042118791799735351}
|
||||
m_RootOrder: 1
|
||||
m_RootOrder: 2
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 0, y: 0}
|
||||
|
@ -1576,6 +1697,7 @@ RectTransform:
|
|||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children:
|
||||
- {fileID: 1793972352989275953}
|
||||
- {fileID: 5970562223882935147}
|
||||
- {fileID: 505701568077707617}
|
||||
m_Father: {fileID: 7440448439230896798}
|
||||
|
@ -1703,7 +1825,7 @@ GameObject:
|
|||
- component: {fileID: 5575064183374880106}
|
||||
- component: {fileID: 4456184404364440943}
|
||||
m_Layer: 5
|
||||
m_Name: restartBtn
|
||||
m_Name: repracticeBtn
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
|
@ -1722,7 +1844,7 @@ RectTransform:
|
|||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 6042118791799735351}
|
||||
m_RootOrder: 0
|
||||
m_RootOrder: 1
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
m_AnchorMin: {x: 0, y: 0}
|
||||
m_AnchorMax: {x: 0, y: 0}
|
||||
|
@ -1757,7 +1879,7 @@ MonoBehaviour:
|
|||
m_OnCullStateChanged:
|
||||
m_PersistentCalls:
|
||||
m_Calls: []
|
||||
m_Sprite: {fileID: 21300000, guid: c3d55bff3fed3944d923c2ecd15ffcc7, type: 3}
|
||||
m_Sprite: {fileID: 21300000, guid: c80a6927ebf1c3341b06f4658b618b27, type: 3}
|
||||
m_Type: 0
|
||||
m_PreserveAspect: 0
|
||||
m_FillCenter: 1
|
||||
|
@ -1796,7 +1918,7 @@ MonoBehaviour:
|
|||
m_ColorMultiplier: 1
|
||||
m_FadeDuration: 0.1
|
||||
m_SpriteState:
|
||||
m_HighlightedSprite: {fileID: 21300000, guid: c3d55bff3fed3944d923c2ecd15ffcc7, type: 3}
|
||||
m_HighlightedSprite: {fileID: 21300000, guid: 591890531ab45c94e854151ef5a98b64, type: 3}
|
||||
m_PressedSprite: {fileID: 0}
|
||||
m_SelectedSprite: {fileID: 0}
|
||||
m_DisabledSprite: {fileID: 0}
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 9950bfe537e789346b8593225c278f83
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 5c65aa8e438fb2c4f94ba2db56192c06
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -452,6 +452,31 @@ public class GameManager : SingletonAutoMono<GameManager>
|
|||
});
|
||||
});
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 学习调用
|
||||
/// </summary>
|
||||
public void Study()
|
||||
{
|
||||
ResetStateAndEvent();
|
||||
RunModelMgr.ModeType = E_ModeType.Study;
|
||||
EventMgr.EventTrigger(Enum_EventType.SwitchMode);
|
||||
ProcessMgr.Init(RunModelMgr.schemeID);
|
||||
UIMgr.ShowPanel<UI_LoadingPanel>(E_UI_Layer.System, (panel) =>
|
||||
{
|
||||
panel.Init();
|
||||
EventMgr.EventTrigger<float>(Enum_EventType.UpdateProgress, 0.1f);
|
||||
ScenesMgr.LoadSceneAsyn($"{systemId}_{RunModelMgr.schemeID}_03_OfficeScene", () =>
|
||||
{
|
||||
if (UIMgr.GetPanel<UI_SelectDevicePanel>())
|
||||
UIMgr.HidePanel<UI_SelectDevicePanel>();
|
||||
if (UIMgr.GetPanel<UI_BGPanel>())
|
||||
UIMgr.HidePanel<UI_BGPanel>();
|
||||
EventMgr.EventTrigger<float>(Enum_EventType.UpdateProgress, 0.9f);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 清除一些动态
|
||||
/// </summary>
|
||||
|
|
|
@ -295,11 +295,11 @@ public class NetManager : BaseManager<NetManager>
|
|||
JObject jo = JObject.Parse(result);
|
||||
if (jo["code"].ToObject<int>() == 200)
|
||||
{
|
||||
TipPanel.ShowTip("上传分数成功");
|
||||
//TipPanel.ShowTip("上传分数成功");
|
||||
}
|
||||
else
|
||||
{
|
||||
TipPanel.ShowTip("上传分数失败;" + jo["msg"].ToString());
|
||||
//TipPanel.ShowTip("上传分数失败;" + jo["msg"].ToString());
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
|
|
@ -13,6 +13,7 @@ public class OfficeManager : SingletonMono<OfficeManager>
|
|||
/// 手机
|
||||
/// </summary>
|
||||
public MobileController mobileController;
|
||||
public MobileAttach10007_7002 mobileAttch10007;
|
||||
private FirstPersonController firstPersonController;
|
||||
private void Start()
|
||||
{
|
||||
|
|
|
@ -12,12 +12,14 @@ public class OfficeTimelineControl : MonoBehaviour
|
|||
public GameObject playerModel;
|
||||
//public GameObject playerController;
|
||||
public GameObject aniCamera;
|
||||
|
||||
private Transform door;
|
||||
// Start is called before the first frame update
|
||||
private async void Start()
|
||||
{
|
||||
door = transform.GetChild(0);
|
||||
await Task.Delay(1);
|
||||
mPlayableDirector = GetComponent<PlayableDirector>();
|
||||
door.localEulerAngles = new Vector3(0f, 62.853f, 0f);
|
||||
if (!GameManager.RunModelMgr.isOnceOfficeAni)
|
||||
{
|
||||
mPlayableDirector.Play();
|
||||
|
@ -31,13 +33,15 @@ public class OfficeTimelineControl : MonoBehaviour
|
|||
}
|
||||
private void Update()
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
if (Input.GetKeyDown("p"))
|
||||
{
|
||||
mPlayableDirector.Stop();
|
||||
DestroyPlayer();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 外挂到场景中得timeline
|
||||
/// </summary>
|
||||
|
@ -50,6 +54,7 @@ public class OfficeTimelineControl : MonoBehaviour
|
|||
private void DestroyPlayer()
|
||||
{
|
||||
GameManager.EventMgr.EventTrigger(Enum_EventType.InitializationUI);
|
||||
door.localEulerAngles = new Vector3(0f, -90f, 0f);
|
||||
Destroy(playerModel);
|
||||
Destroy(aniCamera);
|
||||
mPlayableDirector.Stop();
|
||||
|
|
|
@ -19,14 +19,14 @@ public class UI_PracticeInfoItem : BaseItem
|
|||
{
|
||||
pointData = $"<color=#FF0000>{ sInfo.stepName}</color>";
|
||||
pointInfoData = $"<color=#FF0000>{sInfo.testPoint}</color>";
|
||||
scoreData = $"<color=#FF0000>{sInfo.testPoint}</color>/{sInfo.defaultScore}";
|
||||
scoreData = $"<color=#FF0000>{sInfo.setScore}</color>/{sInfo.defaultScore}";
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
pointData = sInfo.stepName;
|
||||
pointInfoData = sInfo.testPoint;
|
||||
scoreData = $"<color=#00EEE6>{sInfo.testPoint}</color>/{sInfo.defaultScore}";
|
||||
scoreData = $"<color=#00EEE6>{sInfo.setScore}</color>/{sInfo.defaultScore}";
|
||||
}
|
||||
point.text = pointData;
|
||||
pointInfo.text = pointInfoData;
|
||||
|
|
|
@ -94,9 +94,7 @@ public class UI_MainTitlePanel : BasePanel
|
|||
|
||||
private void SwitchUserName()
|
||||
{
|
||||
var userName = GameManager.ProcessMgr.userData.userName;
|
||||
//GetControl<TextMeshProUGUI>("userNameText (TMP)").text = userName;
|
||||
GetControl<TextMeshProUGUI>("userNameText (TMP)").text = "考生姓名:张三三三";
|
||||
GetControl<TextMeshProUGUI>("userNameText (TMP)").text = $"考生姓名:{GameManager.NetMgr.userName}";
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
@ -35,43 +35,36 @@ public class UI_PracticeCompletedPanel : BasePanel
|
|||
base.HideMe();
|
||||
GameManager.EventMgr.EventTrigger<bool>(Enum_EventType.PlayerCanMove, true);
|
||||
}
|
||||
|
||||
public void ResetPractice()
|
||||
{
|
||||
GameManager.UIMgr.ShowPanel<UI_MessagePanel>(E_UI_Layer.System, (p) =>
|
||||
{
|
||||
p.Init("Ìáʾ", "ÊÇ·ñÖØÐÂÁ·Ï°£¿", E_MessageType.Error, () =>
|
||||
{
|
||||
GameManager.Instance.Practice();
|
||||
GameManager.UIMgr.HidePanel<UI_PracticeCompletedPanel>();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
protected override void OnClick(string btnName)
|
||||
{
|
||||
switch (btnName)
|
||||
{
|
||||
case "restartBtn":
|
||||
GameManager.Instance.Practice();
|
||||
//GameManager.ProcessMgr.Init(GameManager.RunModelMgr.schemeID, GameManager.RunModelMgr.ModeType);
|
||||
//GameManager.UIMgr.ShowPanel<UI_LoadingPanel>(E_UI_Layer.System, (panel) =>
|
||||
//{
|
||||
// //GameManager.UIMgr.ShowPanel<UI_MainTitlePanel>(E_UI_Layer.Bot, (panel) =>
|
||||
// //{
|
||||
// // panel.Init();
|
||||
// //});
|
||||
|
||||
// panel.Init();
|
||||
// GameManager.EventMgr.EventTrigger<float>(Enum_EventType.UpdateProgress, 0.1f);
|
||||
// GameManager.ScenesMgr.LoadSceneAsyn($"{GameManager.Instance.systemId}_{GameManager.RunModelMgr.schemeID}_03_OfficeScene", () =>
|
||||
// {
|
||||
// GameManager.UIMgr.HidePanel<UI_SelectModePanel>();
|
||||
// GameManager.UIMgr.HidePanel<UI_BGPanel>();
|
||||
// GameManager.EventMgr.EventTrigger<float>(Enum_EventType.UpdateProgress, 0.9f);
|
||||
// if (GameManager.RunModelMgr.ModeType != E_ModeType.Study)
|
||||
// {
|
||||
// GameManager.RunModelMgr.startTime = DateTime.Now;
|
||||
// Debug.Log("¿ªÊ¼¼Çʱ£º" + GameManager.RunModelMgr.startTime.ToString());
|
||||
// }
|
||||
// });
|
||||
//});
|
||||
GameManager.Instance.Study();
|
||||
GameManager.UIMgr.HidePanel<UI_PracticeCompletedPanel>();
|
||||
break;
|
||||
case "repracticeBtn":
|
||||
ResetPractice();
|
||||
break;
|
||||
case "backBtn":
|
||||
GameManager.Instance.ShowUIPanelAndLoadScene(true);
|
||||
break;
|
||||
case "closeBtn":
|
||||
GameManager.UIMgr.HidePanel<UI_PracticeCompletedPanel>();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
GameManager.UIMgr.HidePanel<UI_PracticeCompletedPanel>();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -52,7 +52,6 @@ public class UI_TaskListPanel : BasePanel
|
|||
/// <param name="state">0 未完成所有步骤跳转,1 完成所有步骤跳转</param>
|
||||
public void ClickFirstSubProcessesItem(int state, Action _cancelCallback = null)
|
||||
{
|
||||
Debug.LogError("@@@"+ state);
|
||||
if (_content.GetChild(0).GetComponent<UI_SubProcessItem>())
|
||||
{
|
||||
_content.GetChild(0).GetComponent<UI_SubProcessItem>().OnResetClick(true, state, state == 1 ? _cancelCallback : null);
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: cf34ebc852e9c9f458b696cb22de966e
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 62d9184e2eec14d438abcc559e87f0a2
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,8 @@
|
|||
fileFormatVersion: 2
|
||||
guid: f14cadf0ccc90954588b9963523d9c72
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -0,0 +1,86 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniRx", "UniRx.csproj", "{04933ACD-67D0-967F-5ED4-A3E01DE821AA}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp", "Assembly-CSharp.csproj", "{DD6B8BA8-E309-EA46-FF6E-5867B0DE6B57}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.Linq", "UniTask.Linq.csproj", "{51DC1BFD-04E8-4D18-B1D0-BFE4658C59C7}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-firstpass", "Assembly-CSharp-firstpass.csproj", "{EDFC0BC0-BE55-1DFA-C8ED-2E91E75F1D91}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask", "UniTask.csproj", "{AA2CABE2-1FED-9054-FCEE-15A11CE5C314}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.Addressables", "UniTask.Addressables.csproj", "{9120F05B-BCD4-A0EC-573C-85E006317B93}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.TextMeshPro", "UniTask.TextMeshPro.csproj", "{01A45A7A-DAB4-992A-BA5A-4CFF17AAC845}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.DOTween", "UniTask.DOTween.csproj", "{AAC48AF5-6C89-1E1C-38D8-7A221DBC8793}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-Editor-firstpass", "Assembly-CSharp-Editor-firstpass.csproj", "{3E44EBC3-79B6-B544-6C83-D720B8A0A170}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Assembly-CSharp-Editor", "Assembly-CSharp-Editor.csproj", "{65DE1E6F-9698-466C-D5CC-8A7FD07B7DFC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UniTask.Editor", "UniTask.Editor.csproj", "{7FE66E06-19F6-4AE2-4C42-1666441BEE6F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sirenix.OdinInspector.Modules.UnityMathematics", "Sirenix.OdinInspector.Modules.UnityMathematics.csproj", "{7993B562-2FBA-ED8A-0E5B-219DA286BE1A}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{04933ACD-67D0-967F-5ED4-A3E01DE821AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{04933ACD-67D0-967F-5ED4-A3E01DE821AA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{04933ACD-67D0-967F-5ED4-A3E01DE821AA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{04933ACD-67D0-967F-5ED4-A3E01DE821AA}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{DD6B8BA8-E309-EA46-FF6E-5867B0DE6B57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{DD6B8BA8-E309-EA46-FF6E-5867B0DE6B57}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{DD6B8BA8-E309-EA46-FF6E-5867B0DE6B57}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{DD6B8BA8-E309-EA46-FF6E-5867B0DE6B57}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{51DC1BFD-04E8-4D18-B1D0-BFE4658C59C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{51DC1BFD-04E8-4D18-B1D0-BFE4658C59C7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{51DC1BFD-04E8-4D18-B1D0-BFE4658C59C7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{51DC1BFD-04E8-4D18-B1D0-BFE4658C59C7}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{EDFC0BC0-BE55-1DFA-C8ED-2E91E75F1D91}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{EDFC0BC0-BE55-1DFA-C8ED-2E91E75F1D91}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{EDFC0BC0-BE55-1DFA-C8ED-2E91E75F1D91}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{EDFC0BC0-BE55-1DFA-C8ED-2E91E75F1D91}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{AA2CABE2-1FED-9054-FCEE-15A11CE5C314}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{AA2CABE2-1FED-9054-FCEE-15A11CE5C314}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{AA2CABE2-1FED-9054-FCEE-15A11CE5C314}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{AA2CABE2-1FED-9054-FCEE-15A11CE5C314}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{9120F05B-BCD4-A0EC-573C-85E006317B93}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{9120F05B-BCD4-A0EC-573C-85E006317B93}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9120F05B-BCD4-A0EC-573C-85E006317B93}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9120F05B-BCD4-A0EC-573C-85E006317B93}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{01A45A7A-DAB4-992A-BA5A-4CFF17AAC845}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{01A45A7A-DAB4-992A-BA5A-4CFF17AAC845}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{01A45A7A-DAB4-992A-BA5A-4CFF17AAC845}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{01A45A7A-DAB4-992A-BA5A-4CFF17AAC845}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{AAC48AF5-6C89-1E1C-38D8-7A221DBC8793}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{AAC48AF5-6C89-1E1C-38D8-7A221DBC8793}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{AAC48AF5-6C89-1E1C-38D8-7A221DBC8793}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{AAC48AF5-6C89-1E1C-38D8-7A221DBC8793}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{3E44EBC3-79B6-B544-6C83-D720B8A0A170}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3E44EBC3-79B6-B544-6C83-D720B8A0A170}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3E44EBC3-79B6-B544-6C83-D720B8A0A170}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3E44EBC3-79B6-B544-6C83-D720B8A0A170}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{65DE1E6F-9698-466C-D5CC-8A7FD07B7DFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{65DE1E6F-9698-466C-D5CC-8A7FD07B7DFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{65DE1E6F-9698-466C-D5CC-8A7FD07B7DFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{65DE1E6F-9698-466C-D5CC-8A7FD07B7DFC}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{7FE66E06-19F6-4AE2-4C42-1666441BEE6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7FE66E06-19F6-4AE2-4C42-1666441BEE6F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7FE66E06-19F6-4AE2-4C42-1666441BEE6F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7FE66E06-19F6-4AE2-4C42-1666441BEE6F}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{7993B562-2FBA-ED8A-0E5B-219DA286BE1A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7993B562-2FBA-ED8A-0E5B-219DA286BE1A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7993B562-2FBA-ED8A-0E5B-219DA286BE1A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7993B562-2FBA-ED8A-0E5B-219DA286BE1A}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
Loading…
Reference in New Issue