Description
Returns a boolean that shows whether the provided language (string) exists in AMA Loxis.
Type
Method
Syntax
bool doesEnglishLanguageExists = loxisManager.languageExist("English");
Example
using UnityEngine;
using AMACreative.Loxis;
public class LangaugeChangeTester : MonoBehavior
// Get reference to a LoxisManager instance through the inspector
[SerializeField] private LoxisManager loxisManager;
private void Start()
{
bool doesEnglishLanguageExists = loxisManager.languageExist("English");
}
}