Transform: Fixed bug in euler to quaternion conversions | Static_Array: Added overload for operator []= | Widgets: Added changed bool to textfields
This commit is contained in:
@@ -30,4 +30,8 @@ array_contains :: (static_array: Static_Array, value: static_array.Data_Type) ->
|
||||
|
||||
operator [] :: (static_array: Static_Array, index: int) -> static_array.Data_Type {
|
||||
return static_array.data[index];
|
||||
}
|
||||
}
|
||||
|
||||
operator []= :: (static_array: *Static_Array, index: int, value: static_array.Data_Type) {
|
||||
static_array.data[index] = value;
|
||||
}
|
||||
Reference in New Issue
Block a user