Skip to main content

DataSection.floatKeys

public IReadOnlyList<string> floatKeys { get; }

Description#

List of keys for falot values

Usage#

Example
using NullSave.GDTKusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(DataSection target)    {        System.Collections.Generic.IReadOnlyList<string> result = target.floatKeys;    }   }