Fixed 3d model loading icon rotation speed on android

This commit is contained in:
2018-10-08 16:31:41 +02:00
parent 3629fac6f2
commit ab8d53630c
4 changed files with 3223 additions and 4 deletions

View File

@@ -144,6 +144,7 @@ GameObject:
- component: {fileID: 224105959217507050} - component: {fileID: 224105959217507050}
- component: {fileID: 222883275204112786} - component: {fileID: 222883275204112786}
- component: {fileID: 114642005439168118} - component: {fileID: 114642005439168118}
- component: {fileID: 111933338744172718}
m_Layer: 5 m_Layer: 5
m_Name: IconLoading m_Name: IconLoading
m_TagString: Untagged m_TagString: Untagged
@@ -703,6 +704,21 @@ Animation:
m_PlayAutomatically: 0 m_PlayAutomatically: 0
m_AnimatePhysics: 0 m_AnimatePhysics: 0
m_CullingType: 0 m_CullingType: 0
--- !u!111 &111933338744172718
Animation:
m_ObjectHideFlags: 1
m_PrefabParentObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1298020638438872}
m_Enabled: 1
serializedVersion: 3
m_Animation: {fileID: 7400000, guid: 9d97cbcd95f31c049b86a589f83768fa, type: 2}
m_Animations:
- {fileID: 7400000, guid: 9d97cbcd95f31c049b86a589f83768fa, type: 2}
m_WrapMode: 0
m_PlayAutomatically: 1
m_AnimatePhysics: 0
m_CullingType: 0
--- !u!114 &114013157313467306 --- !u!114 &114013157313467306
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 1 m_ObjectHideFlags: 1

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 9d97cbcd95f31c049b86a589f83768fa
timeCreated: 1539006727
licenseType: Free
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -62,10 +62,7 @@ namespace RothenburgAR.UI
while (!data.IsModelLoaded) while (!data.IsModelLoaded)
{ {
// display loading icon or sth idk yield return new WaitForSecondsRealtime(.1f);
IconLoading.transform.Rotate(new Vector3(0, 0, 1), -3f);
yield return new WaitForSecondsRealtime(.01f);
} }
} }