Skip to content

Commit

Permalink
Decal, font, v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
betairylia committed Jan 18, 2024
1 parent b13bc86 commit 64d49d8
Show file tree
Hide file tree
Showing 179 changed files with 18,228 additions and 650,913 deletions.
176 changes: 120 additions & 56 deletions .idea/.idea.miniRAID-HD2D/.idea/workspace.xml

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions Assets/CombatSceneLoader.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;

public class CombatSceneLoader : MonoBehaviour
{
public string sceneName;

// Start is called before the first frame update
void Start()
{
if (SceneManager.loadedSceneCount <= 1)
{
SceneManager.LoadScene(sceneName, LoadSceneMode.Additive);
}
}
}
11 changes: 11 additions & 0 deletions Assets/CombatSceneLoader.cs.meta

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

Loading

0 comments on commit 64d49d8

Please sign in to comment.