public void Set()

in AppCenterDemoApp/Assets/Puppet/PuppetEventProperty.cs [18:38]


    public void Set(EventProperties properties)
    {
        switch (Type.value)
        {
            case 0: // String
                properties.Set(Key.text, Value.text);
                break;
            case 1: // Long
                properties.Set(Key.text, long.Parse(Value.text));
                break;
            case 2: // Double
                properties.Set(Key.text, double.Parse(Value.text, NumberStyles.AllowDecimalPoint, CultureInfo.InvariantCulture));
                break;
            case 3: // Boolean
                properties.Set(Key.text, Boolean.isOn);
                break;
            case 4: // DateTime
                properties.Set(Key.text, DateTime.Parse(Value.text));
                break;
        }
    }