This repository has no description
1// SPDX-License-Identifier: MIT
2// SPDX-FileCopyrightText: 2023 MizunagiKB <mizukb@live.jp>
3using System;
4using Godot;
5
6
7#pragma warning disable CA1050
8
9
10public partial class GDCubismValueAbsCS : GodotObject
11{
12 private static readonly StringName NativeName = "GDCubismValueAbs";
13
14 protected GodotObject InternalObject = null;
15
16 public GDCubismValueAbsCS()
17 {
18 this.InternalObject = (SubViewport)Godot.ClassDB.Instantiate(NativeName);
19 }
20
21 public GDCubismValueAbsCS(GodotObject o)
22 {
23 this.InternalObject = o;
24 }
25
26 public GodotObject GetInternalObject()
27 {
28 return this.InternalObject;
29 }
30
31 public void Attach(GodotObject o)
32 {
33 this.InternalObject = o;
34 }
35
36 public GodotObject Detach()
37 {
38 GodotObject o = this.InternalObject;
39 this.InternalObject = null;
40 return o;
41 }
42
43 // ------------------------------------------------------------ Property(s)
44
45 public String Id
46 {
47 get { return (String)this.InternalObject.Call("get_id"); }
48 }
49
50 public float Value
51 {
52 set { this.InternalObject.Call("set_value", (float)value); }
53 get { return (float)this.InternalObject.Call("get_value"); }
54 }
55
56 // -------------------------------------------------------------- Method(s)
57 // -------------------------------------------------------------- Signal(s)
58}