xray16 1.0.12 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -135,12 +135,17 @@ declare module "xray16" {
|
|
|
135
135
|
/**
|
|
136
136
|
* @group xr_game
|
|
137
137
|
*/
|
|
138
|
-
export function set_start_position(position: vector): void;
|
|
138
|
+
export function set_start_position(this: void, position: vector): void;
|
|
139
139
|
|
|
140
140
|
/**
|
|
141
141
|
* @group xr_game
|
|
142
142
|
*/
|
|
143
|
-
export function
|
|
143
|
+
export function set_start_direction(this: void, direction: vector): void;
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* @group xr_game
|
|
147
|
+
*/
|
|
148
|
+
export function set_start_game_vertex_id(this: void, gvid: i32): void;
|
|
144
149
|
|
|
145
150
|
/**
|
|
146
151
|
* @group xr_game
|