comparison src/th06/ecl.rs @ 682:d6cc9086058c

ecl_vm: more instructions
author Gauvain "GovanifY" Roussel-Tarbouriech <gauvain@govanify.com>
date Fri, 16 Aug 2019 21:31:00 +0200
parents 826c16e5f909
children 8c50a7b19425
comparison
equal deleted inserted replaced
681:1209e7f855a4 682:d6cc9086058c
219 46 => fn SetRotationSpeed(speed: f32), 219 46 => fn SetRotationSpeed(speed: f32),
220 47 => fn SetSpeed(speed: f32), 220 47 => fn SetSpeed(speed: f32),
221 48 => fn SetAcceleration(acceleration: f32), 221 48 => fn SetAcceleration(acceleration: f32),
222 49 => fn SetRandomAngle(min: f32, max: f32), 222 49 => fn SetRandomAngle(min: f32, max: f32),
223 50 => fn SetRandomAngleEx(min: f32, max: f32), 223 50 => fn SetRandomAngleEx(min: f32, max: f32),
224 51 => fn TargetPlayer(TODO: f32, speed: f32), 224 51 => fn TargetPlayer(angle: f32, speed: f32),
225 52 => fn MoveInDecel(duration: i32, angle: f32, speed: f32), 225 52 => fn MoveInDecel(duration: i32, angle: f32, speed: f32),
226 56 => fn MoveToLinear(duration: i32, x: f32, y: f32, z: f32), 226 56 => fn MoveToLinear(duration: i32, x: f32, y: f32, z: f32),
227 57 => fn MoveToDecel(duration: i32, x: f32, y: f32, z: f32), 227 57 => fn MoveToDecel(duration: i32, x: f32, y: f32, z: f32),
228 59 => fn MoveToAccel(duration: i32, x: f32, y: f32, z: f32), 228 59 => fn MoveToAccel(duration: i32, x: f32, y: f32, z: f32),
229 61 => fn StopIn(duration: i32), 229 61 => fn StopIn(duration: i32),