Commit 8d8b5f0916e3d72525d5ade20f30148233a626e6

Authored by Mateus Lustosa
1 parent 989e951d
Exists in master and in 1 other branch dev

Mostrar botao INFO; Delay da lista retirado.

Assets/Scenes/Scene.unity
... ... @@ -1336,7 +1336,7 @@ Prefab:
1336 1336 objectReference: {fileID: 0}
1337 1337 - target: {fileID: 189892, guid: 12db97f21fb2a7d4cb537ec5395de1b9, type: 2}
1338 1338 propertyPath: m_IsActive
1339   - value: 0
  1339 + value: 1
1340 1340 objectReference: {fileID: 0}
1341 1341 - target: {fileID: 106076, guid: 12db97f21fb2a7d4cb537ec5395de1b9, type: 2}
1342 1342 propertyPath: m_IsActive
... ...
Assets/Scripts/ListManager.cs
... ... @@ -88,7 +88,7 @@ public class ListManager : MonoBehaviour {
88 88 private IEnumerator populateList()
89 89 {
90 90 changeLoadingState(true);
91   - yield return new WaitForSeconds(1);
  91 + yield return new WaitForSeconds(0);
92 92  
93 93 int last = this.index + OFFSET;
94 94 if (last > size) last = this.size;
... ...