Compare commits
No commits in common. "11479c65f02685d9f28550e3f3b27803ecdfe3e3" and "4b0ff4d760d77fb0eaebbd2612aedccd76f48987" have entirely different histories.
11479c65f0
...
4b0ff4d760
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -1,3 +1,2 @@
|
||||
# Normalize EOL for all files that Git considers text files.
|
||||
* text=auto eol=lf
|
||||
addons/boids/lib/* filter=lfs diff=lfs merge=lfs -text
|
||||
|
@ -5,11 +5,11 @@ reloadable = true
|
||||
|
||||
[libraries]
|
||||
linux.debug.x86_64 = "res://rust/target/debug/libboids.so"
|
||||
linux.release.x86_64 = "res://lib/libboids.x86.so"
|
||||
windows.debug.x86_64 = "res://rust/target/debug/boids.dll"
|
||||
linux.release.x86_64 = "res://addons/boids/lib/libboids.x86.so"
|
||||
windows.release.x86_64 = "res://addons/boids/lib/boids.x86.dll"
|
||||
macos.release = "res://addons/boids/lib/libboids.x86.dylib"
|
||||
macos.release.arm64 = "res://addons/boids/lib/libboids.arm64.dylib"
|
||||
windows.release.x86_64 = "res://lib/boids.x86.dll"
|
||||
macos.release = "res://lib/libboids.x86.dylib"
|
||||
macos.release.arm64 = "res://lib/libboids.arm64.dylib"
|
||||
|
||||
[icons]
|
||||
BoidProperties = "res://addons/boids/resources/boid_properties.svg"
|
||||
|
Binary file not shown.
@ -27,14 +27,6 @@ impl Boid2D {
|
||||
Vector2::new(self.vel.x, self.vel.y)
|
||||
}
|
||||
|
||||
#[func]
|
||||
#[inline(always)]
|
||||
/// Set the current velocity of this boid.
|
||||
fn set_velocity(&mut self, new_velocity: Vector2) {
|
||||
self.vel.x = new_velocity.x;
|
||||
self.vel.y = new_velocity.y;
|
||||
}
|
||||
|
||||
#[func]
|
||||
#[inline(always)]
|
||||
/// Get the ID of this boid.
|
||||
|
@ -27,13 +27,6 @@ impl Boid3D {
|
||||
Vector3::new(self.vel.x, self.vel.y, self.vel.z)
|
||||
}
|
||||
|
||||
#[func]
|
||||
#[inline(always)]
|
||||
/// Set the current velocity of this boid.
|
||||
fn set_velocity(&mut self, new_velocity: Vector3) {
|
||||
self.vel = to_glam_vec(new_velocity);
|
||||
}
|
||||
|
||||
#[func]
|
||||
#[inline(always)]
|
||||
/// Get the ID of this boid.
|
||||
|
Loading…
Reference in New Issue
Block a user