blob: 50ceed1aa6cd8539980f755923e9f15745bc16d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
tool
extends Node
class_name SS2D_Common_Functions
static func sort_z(a, b) -> bool:
if a.z_index < b.z_index:
return true
return false
static func sort_int_ascending(a: int, b: int) -> bool:
if a < b:
return true
return false
static func sort_int_descending(a: int, b: int) -> bool:
if a < b:
return false
return true
static func to_vector3(vector: Vector2):
return Vector3(vector.x, vector.y, 0)
static func merge_arrays(arrays: Array) -> Array:
var new_array = []
for array in arrays:
for v in array:
new_array.push_back(v)
return new_array
|