Localize.GetFormattedString
Declaration#
public static string GetFormattedString(string format)Parameters#
| Name | Description |
|---|---|
| format | String to update with formatting |
Description#
Returns a localized string replacing [entry:ID] with localized entries
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { Localize.GetFormattedString("Hello [entry:world]"); }
}