SpaceMadness / lunar-unity-console

High-performance Unity iOS/Android logger built with native platform UI
https://www.assetstore.unity3d.com/en/#!/content/43800
Other
833 stars 112 forks source link

Vars windows doesn't show all the declared variables #202

Open novavision opened 3 years ago

novavision commented 3 years ago

Here is the Variables.cs

using LunarConsolePlugin;

namespace App.Utils
{
    [CVarContainer]
    public static class Variables
    {
        public static readonly CVar fingersCount = new CVar("Finger count", 1);
        public static readonly CVar zoomSensitivity = new CVar("Zoom sensitivity", 1f);
        public static readonly CVar moveSensitivity = new CVar("Move sensitivity", 1f);
        public static readonly CVar rotationSensitivity = new CVar("Rot sensitivity", 1f);
        public static readonly CVar dampFactor = new CVar("Damp factor", 10f);
    }
}

and here how Actions & Vars window looks like in Editor on Play image