Skip to content

Commit

Permalink
0.32 update
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Nov 15, 2022
1 parent 65c164e commit bf5fdd3
Show file tree
Hide file tree
Showing 970 changed files with 40,080 additions and 8,819 deletions.
7 changes: 5 additions & 2 deletions Assembly-CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="Assets\MapGenerator.cs" />
<Compile Include="Assets\Code\PlayerController.cs" />
<Compile Include="Assets\Code\CameraController.cs" />
<Compile Include="Assets\SeedOK.cs" />
<Compile Include="Assets\MapGenRNG.cs" />
<Compile Include="Assets\Code\PlayerController.cs" />
<Compile Include="Assets\Code\CameraController.cs" />
<Reference Include="UnityEngine">
<HintPath>C:\Program Files\Unity\Hub\Editor\2021.3.6f1\Editor\Data\Managed\UnityEngine\UnityEngine.dll</HintPath>
</Reference>
Expand Down Expand Up @@ -698,6 +698,9 @@
<Reference Include="Unity.VisualScripting.SettingsProvider.Editor">
<HintPath>C:\Users\noname\Minecraft\Library\ScriptAssemblies\Unity.VisualScripting.SettingsProvider.Editor.dll</HintPath>
</Reference>
<Reference Include="Unity.2D.Sprite.Editor">
<HintPath>C:\Users\noname\Minecraft\Library\ScriptAssemblies\Unity.2D.Sprite.Editor.dll</HintPath>
</Reference>
<Reference Include="Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection">
<HintPath>C:\Users\noname\Minecraft\Library\ScriptAssemblies\Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll</HintPath>
</Reference>
Expand Down
9 changes: 9 additions & 0 deletions Assets/Code/PlayerController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,19 @@ public class PlayerController : MonoBehaviour
public Text PosX;
public Text PosY;
public Text PosZ;
public Text Seed;
// Start is called before the first frame update
void Start()
{
rigid = gameObject.GetComponent<Rigidbody>();
if (GameObject.Find("MapGenRNG").GetComponent<MapGenRNG>().seed == null)
{
Seed.text = "seed = Random Seed";
}
else
{
Seed.text = $"seed = {GameObject.Find("MapGenRNG").GetComponent<MapGenRNG>().seed}";
}
}

// Update is called once per frame
Expand Down
8 changes: 8 additions & 0 deletions Assets/GUITexture.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/GUITexture/diamond.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
98 changes: 98 additions & 0 deletions Assets/GUITexture/diamond.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/GUITexture/inventory.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
98 changes: 98 additions & 0 deletions Assets/GUITexture/inventory.png.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Assets/GUITexture/inventory1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit bf5fdd3

Please sign in to comment.