summaryrefslogtreecommitdiffstats
path: root/doc/classes/UndoRedo.xml
diff options
context:
space:
mode:
authorRaul Santos <raulsntos@gmail.com>2022-08-26 16:21:45 +0200
committerRaul Santos <raulsntos@gmail.com>2023-01-23 16:45:37 +0100
commit92e4b4e8881154636b2c05e2cf7383f503f73bba (patch)
treeb15048afe7f03a0c7896b19123430608c1be9ae8 /doc/classes/UndoRedo.xml
parent1f22c482e192ef7df57fdc182243459d3dc4f232 (diff)
downloadredot-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.xml8
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&lt;Node2D&gt;("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]