diff options
author | Raul Santos <raulsntos@gmail.com> | 2022-08-26 16:21:45 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2023-01-23 16:45:37 +0100 |
commit | 92e4b4e8881154636b2c05e2cf7383f503f73bba (patch) | |
tree | b15048afe7f03a0c7896b19123430608c1be9ae8 /doc/classes/UndoRedo.xml | |
parent | 1f22c482e192ef7df57fdc182243459d3dc4f232 (diff) | |
download | redot-engine-92e4b4e8881154636b2c05e2cf7383f503f73bba.tar.gz |
Update C# signal documentation and remove bind array
- Updates C# signal documentation and code examples to the new API in 4.0
- Replace all `nameof` usages with the exposed `StringName`
Diffstat (limited to 'doc/classes/UndoRedo.xml')
-rw-r--r-- | doc/classes/UndoRedo.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/UndoRedo.xml b/doc/classes/UndoRedo.xml index 42baf7728d..6c151ef958 100644 --- a/doc/classes/UndoRedo.xml +++ b/doc/classes/UndoRedo.xml @@ -48,10 +48,10 @@ { var node = GetNode<Node2D>("MyNode2D"); UndoRedo.CreateAction("Move the node"); - UndoRedo.AddDoMethod(this, nameof(DoSomething)); - UndoRedo.AddUndoMethod(this, nameof(UndoSomething)); - UndoRedo.AddDoProperty(node, "position", new Vector2(100, 100)); - UndoRedo.AddUndoProperty(node, "position", node.Position); + UndoRedo.AddDoMethod(this, MethodName.DoSomething); + UndoRedo.AddUndoMethod(this, MethodName.UndoSomething); + UndoRedo.AddDoProperty(node, Node2D.PropertyName.Position, new Vector2(100, 100)); + UndoRedo.AddUndoProperty(node, Node2D.PropertyName.Position, node.Position); UndoRedo.CommitAction(); } [/csharp] |