Commit 8d8b5f0916e3d72525d5ade20f30148233a626e6
1 parent
989e951d
Exists in
master
and in
1 other branch
Mostrar botao INFO; Delay da lista retirado.
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
Assets/Scenes/Scene.unity
@@ -1336,7 +1336,7 @@ Prefab: | @@ -1336,7 +1336,7 @@ Prefab: | ||
1336 | objectReference: {fileID: 0} | 1336 | objectReference: {fileID: 0} |
1337 | - target: {fileID: 189892, guid: 12db97f21fb2a7d4cb537ec5395de1b9, type: 2} | 1337 | - target: {fileID: 189892, guid: 12db97f21fb2a7d4cb537ec5395de1b9, type: 2} |
1338 | propertyPath: m_IsActive | 1338 | propertyPath: m_IsActive |
1339 | - value: 0 | 1339 | + value: 1 |
1340 | objectReference: {fileID: 0} | 1340 | objectReference: {fileID: 0} |
1341 | - target: {fileID: 106076, guid: 12db97f21fb2a7d4cb537ec5395de1b9, type: 2} | 1341 | - target: {fileID: 106076, guid: 12db97f21fb2a7d4cb537ec5395de1b9, type: 2} |
1342 | propertyPath: m_IsActive | 1342 | propertyPath: m_IsActive |
Assets/Scripts/ListManager.cs
@@ -88,7 +88,7 @@ public class ListManager : MonoBehaviour { | @@ -88,7 +88,7 @@ public class ListManager : MonoBehaviour { | ||
88 | private IEnumerator populateList() | 88 | private IEnumerator populateList() |
89 | { | 89 | { |
90 | changeLoadingState(true); | 90 | changeLoadingState(true); |
91 | - yield return new WaitForSeconds(1); | 91 | + yield return new WaitForSeconds(0); |
92 | 92 | ||
93 | int last = this.index + OFFSET; | 93 | int last = this.index + OFFSET; |
94 | if (last > size) last = this.size; | 94 | if (last > size) last = this.size; |