mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Replace XML codeblock spaces with tabs
This commit is contained in:
parent
5dd76968d8
commit
13f642d959
122 changed files with 2407 additions and 2432 deletions
|
|
@ -9,16 +9,16 @@
|
|||
[codeblocks]
|
||||
[gdscript]
|
||||
func some_function():
|
||||
print("Timer started.")
|
||||
await get_tree().create_timer(1.0).timeout
|
||||
print("Timer ended.")
|
||||
print("Timer started.")
|
||||
await get_tree().create_timer(1.0).timeout
|
||||
print("Timer ended.")
|
||||
[/gdscript]
|
||||
[csharp]
|
||||
public async Task SomeFunction()
|
||||
{
|
||||
GD.Print("Timer started.");
|
||||
await ToSignal(GetTree().CreateTimer(1.0f), SceneTreeTimer.SignalName.Timeout);
|
||||
GD.Print("Timer ended.");
|
||||
GD.Print("Timer started.");
|
||||
await ToSignal(GetTree().CreateTimer(1.0f), SceneTreeTimer.SignalName.Timeout);
|
||||
GD.Print("Timer ended.");
|
||||
}
|
||||
[/csharp]
|
||||
[/codeblocks]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue