Skip to main content

DataSection.vector2Keys

public IReadOnlyList<string> vector2Keys { get; }

Description#

List of keys for vector2 values

Usage#

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