Hard Light Productions Forums
Modding, Mission Design, and Coding => The Modding Workshop => Topic started by: KewlToyZ on September 27, 2008, 02:54:20 pm
-
I have an issue with roll left & roll right on one set of thrusters.
;; Rear Left Bottom=======================================
$Thruster:
+Used for: ( "bank right" "slide up" "pitch down" "roll left" )
+Position: (2.30 -2.3 -7.0)
+Normal: ( 0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
$Thruster:
+Used for: ( "bank right" "slide up" "pitch down" "roll left" )
+Position: (2.30 -2.3 -7.2)
+Normal: ( 0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
$Thruster:
+Used for: ( "bank right" "slide up" "pitch down" "roll left" )
+Position: (2.30 -2.3 -7.4)
+Normal: ( 0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
;; Rear Right Bottom=======================================
$Thruster:
+Used for: ( "bank left" "slide up" "pitch down" "roll right" )
+Position: (-2.30 -2.3 -7.0)
+Normal: ( -0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
$Thruster:
+Used for: ( "bank left" "slide up" "pitch down" "roll right" )
+Position: (-2.30 -2.3 -7.2)
+Normal: ( -0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
$Thruster:
+Used for: ( "bank left" "slide up" "pitch down" "roll right" )
+Position: (-2.30 -2.3 -7.4)
+Normal: ( -0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
I switched them back and forth on roll right/left but they always fire the same, so is roll being managed by bank instead?
-
Are you sure you don't have roll and bank (yaw) mixed up?
-
Well I would figure something on the rear left with a vector pointing down and activating would bank the ship to the right but when I ran the controls it wasn't working that way. If I am rolling to the right, the left lower & right upper thrusters should fire I would think as well?
-
Looks like it was bank being activated by only roll.
Thinking through though, the bank toggle isn't really used in BtRL so the defaults of it must go back to roll with its current setup.
So this looks to work the right way now.
;; Rear Left Bottom=======================================
$Thruster:
+Used for: ( "bank left" "slide up" "pitch down" "roll right" )
+Position: (2.30 -2.3 -7.0)
+Normal: ( 0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
$Thruster:
+Used for: ( "bank left" "slide up" "pitch down" "roll right" )
+Position: (2.30 -2.3 -7.2)
+Normal: ( 0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
$Thruster:
+Used for: ( "bank left" "slide up" "pitch down" "roll right" )
+Position: (2.30 -2.3 -7.4)
+Normal: ( 0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
;; Rear Right Bottom=======================================
$Thruster:
+Used for: ( "bank right" "slide up" "pitch down" "roll left" )
+Position: (-2.30 -2.3 -7.0)
+Normal: ( -0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
$Thruster:
+Used for: ( "bank right" "slide up" "pitch down" "roll left" )
+Position: (-2.30 -2.3 -7.2)
+Normal: ( -0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0
$Thruster:
+Used for: ( "bank right" "slide up" "pitch down" "roll left" )
+Position: (-2.30 -2.3 -7.4)
+Normal: ( -0.1 -0.4 0.0)
+Texture: thrustjets
+Radius: 0.15
+Length: 2.0