Skip to main content

PlayerCharacterStats.JSONImportSmart

Declaration#

public void JSONImportSmart(jsonPlayerStatList source)

Parameters#

NameDescription
sourceJSON source

Description#

Import JSON formatted data

Usage#

Example
using NullSave.GDTK.JSON;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(PlayerCharacterStats target, jsonPlayerStatList data)    {        target.JSONImportSmart(data);    }
}

Declaration#

public void JSONImportSmart(jsonNPCList source)

Parameters#

NameDescription
sourceJSON source

Description#

Import JSON formatted data

Usage#

Example
using NullSave.GDTK.JSON;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(PlayerCharacterStats target, jsonNPCList data)    {        target.JSONImportSmart(data);    }
}

Declaration#

public void JSONImportSmart(jsonStatsList source)

Parameters#

NameDescription
sourceJSON source

Description#

Import JSON formatted data

Usage#

Example
using NullSave.GDTK.JSON;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(PlayerCharacterStats target, jsonStatsList data)    {        target.JSONImportSmart(data);    }
}