mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-05 22:09:56 +03:00
Remove trailing space characters (#5251)
This commit is contained in:
@@ -206,7 +206,7 @@ Let's see some examples.
|
||||
export(Resource) var sub_resource
|
||||
export(Array, String) var strings
|
||||
|
||||
# Make sure that every parameter has a default value.
|
||||
# Make sure that every parameter has a default value.
|
||||
# Otherwise, there will be problems with creating and editing
|
||||
# your resource via the inspector.
|
||||
func _init(p_health = 0, p_sub_resource = null, p_strings = []):
|
||||
@@ -241,7 +241,7 @@ Let's see some examples.
|
||||
[Export]
|
||||
public String[] Strings { get; set; }
|
||||
|
||||
// Make sure that every parameter has a default value.
|
||||
// Make sure that every parameter has a default value.
|
||||
// Otherwise, there will be problems with creating and editing
|
||||
// your resource via the inspector.
|
||||
public BotStats(int health = 0, Resource subResource = null, String[] strings = null)
|
||||
|
||||
Reference in New Issue
Block a user