Skip to main content

NPCStats.RemoveLanguagesFromSource

Declaration#

public virtual void RemoveLanguagesFromSource(IUniquelyIdentifiable source)

Parameters#

NameDescription
sourceSource associated with request

Description#

Remove all languages from a specified source

Usage#

Example
using NullSave.GDTK;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(BasicStats source)    {        IUniquelyIdentifiable uid = source.registeredSources[0];        source.RemoveLanguagesFromSource(uid);    }
}