Fixed the Cards UI again

lol pls last time
This commit is contained in:
Anthony Berg 2020-12-01 23:42:25 +00:00
parent 56ba1e81ef
commit 83a787797b
3 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,6 @@
<component name="ContentModelUserStore"> <component name="ContentModelUserStore">
<attachedFolders /> <attachedFolders />
<explicitIncludes> <explicitIncludes>
<Path>Assets</Path>
<Path>Library/PackageCache/com.unity.collab-proxy@1.3.9</Path> <Path>Library/PackageCache/com.unity.collab-proxy@1.3.9</Path>
<Path>Library/PackageCache/com.unity.ext.nunit@1.0.0</Path> <Path>Library/PackageCache/com.unity.ext.nunit@1.0.0</Path>
<Path>Library/PackageCache/com.unity.ide.rider@1.2.1</Path> <Path>Library/PackageCache/com.unity.ide.rider@1.2.1</Path>
@ -21,6 +20,7 @@
<Path>.vs</Path> <Path>.vs</Path>
<Path>Library</Path> <Path>Library</Path>
<Path>Logs</Path> <Path>Logs</Path>
<Path>Temp</Path>
<Path>UserSettings</Path> <Path>UserSettings</Path>
<Path>obj</Path> <Path>obj</Path>
</explicitExcludes> </explicitExcludes>

View File

@ -5724,7 +5724,7 @@ RectTransform:
m_LocalScale: {x: 1, y: 1, z: 1} m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: [] m_Children: []
m_Father: {fileID: 1235795231} m_Father: {fileID: 1235795231}
m_RootOrder: 1 m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0} m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1}
@ -7012,8 +7012,8 @@ RectTransform:
m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1} m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: m_Children:
- {fileID: 2007862498}
- {fileID: 1017986387} - {fileID: 1017986387}
- {fileID: 2007862498}
m_Father: {fileID: 1110544714} m_Father: {fileID: 1110544714}
m_RootOrder: 1 m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@ -10536,7 +10536,7 @@ RectTransform:
m_Children: m_Children:
- {fileID: 1157611929} - {fileID: 1157611929}
m_Father: {fileID: 1235795231} m_Father: {fileID: 1235795231}
m_RootOrder: 0 m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 1, y: 1} m_AnchorMin: {x: 1, y: 1}
m_AnchorMax: {x: 1, y: 1} m_AnchorMax: {x: 1, y: 1}

View File

@ -22,13 +22,13 @@ public class LevelLoader : MonoBehaviour
public void LoadLevel() public void LoadLevel()
{ {
StartCoroutine(UpdateTable()); //Starts the LoadAsynchronously function StartCoroutine(UpdatePlays()); //Starts the LoadAsynchronously function
GameSettings.players = Convert.ToInt32(playersInput.text); //This sets the amount of players that has been set to play in the game. GameSettings.players = Convert.ToInt32(playersInput.text); //This sets the amount of players that has been set to play in the game.
Debug.Log(GameSettings.players); Debug.Log(GameSettings.players);
StartCoroutine(LoadAsynchronously("monopoly")); //Starts the LoadAsynchronously function StartCoroutine(LoadAsynchronously("monopoly")); //Starts the LoadAsynchronously function
} }
IEnumerator UpdateTable() IEnumerator UpdatePlays()
{ {
List<IMultipartFormSection> formData = new List<IMultipartFormSection>(); List<IMultipartFormSection> formData = new List<IMultipartFormSection>();
//POST Data //POST Data