Removed typed array indicator?
This commit is contained in:
parent
0ed6f9ea85
commit
c1c87476c0
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ Unregisters all CORE modules.
|
|||
### `src/modules/splashes.gd`
|
||||
#### *CoreBaseModule* <u>add_splash</u>(*String* <u>category</u>, *String* <u>splash</u>)
|
||||
Adds a splash to the specified category.
|
||||
#### *CoreBaseModule* <u>add_splashes</u>(*String* <u>category</u>, *Array[String]* <u>splashes</u>)
|
||||
#### *CoreBaseModule* <u>add_splashes</u>(*String* <u>category</u>, *Array* <u>splashes</u>)
|
||||
Adds an array of splashes to the specified category.
|
||||
#### *CoreBaseModule* <u>copy_splashes</u>(*String* <u>source_category</u>, *String* <u>target_category</u>)
|
||||
Copies all splashes from the source category to the target category.
|
||||
|
|
|
@ -133,7 +133,7 @@ func add_splash(category: String, splash: String) -> CoreBaseModule:
|
|||
return self
|
||||
|
||||
## Adds an array of splashes to the specified category.
|
||||
func add_splashes(category: String, splash_array: Array[String]) -> CoreBaseModule:
|
||||
func add_splashes(category: String, splash_array: Array) -> CoreBaseModule:
|
||||
for splash in splash_array:
|
||||
add_splash(category, splash)
|
||||
|
||||
|
|
Loading…
Reference in a new issue