View Categories

Current Language RTL

Description

Returns a Boolean that shows whether the currently selected language is marked as RTL in AMA Loxis.

Type

Method

Syntax

bool isCurrentLanguageRTL = loxisManager.currentLanguageRTL(); 

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 isCurrentLanguageRTL = loxisManager.currentLanguageRTL();
    }
} 

Leave a Reply

Your email address will not be published. Required fields are marked *