PlayerCharacterStats.JSONImportSmart
Declaration#
public void JSONImportSmart(jsonPlayerStatList source)Parameters#
| Name | Description |
|---|---|
| source | JSON 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#
| Name | Description |
|---|---|
| source | JSON 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#
| Name | Description |
|---|---|
| source | JSON 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); }
}