This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I gave you admin. https://botogames.awsapps.com/start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using Entitas; | |
public class CompositeSystem : Systems { | |
IContexts contexts; | |
public CompositeSystem(IContexts contexts) { | |
this.contexts = contexts; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma warning disable 618 | |
#pragma warning disable 612 | |
#pragma warning disable 414 | |
#pragma warning disable 168 | |
namespace MessagePack.Resolvers | |
{ | |
using System; | |
using MessagePack; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using UnityEngine; | |
public class cleanlanguagedropdown : MonoBehaviour { | |
public List<GameObject> Scenes; //put your scenes in here from the editor | |
public List<string> LanguageTags; //put "english" "german" etc in this list from the editor. Must correspond to the dropdown | |
List<GameObject> AllLanguageObjects = new List<GameObject>(); //minor: not public; | |