Quote:
Originally Posted by TheDarkWraith
the sonar 'dial' used on the sonar station was probably set to 0,360 instead of -180, 180 like in the dials.cfg file no? 
|
No there's no setting like that in the sensors file only for max and min elevations.
Guess its at the 3D attachment model point is where the 180 offset occured, another thing the devs just attached and never confirmed it works like the clock hands etc.
Bigreg has detached the needle in the hydrophone rotaed it 180 degrees and re-attached

. Works 100% Although we still have the issue of the soundman calling out the bearing after a few seconds delay (Target has often moved from that bearing

).
Actually TDW have you ever lookes at the hydrophone script
the devs never finished the volume part of the script - so the volume dial has no effect.
Code:
def Hydrophone_Dial_MouseWheel( sender, Handled ):
if Handled.Value < 0.0:
HydrophoneStation.RotateHydro(-1.0, True)
else:
HydrophoneStation.RotateHydro(1.0, True)
pass
def Hydrophone_Volume_MouseWheel( sender, Handled ):
pass
what would need to added here to effect volume?
would something like this work like for the rotating Hydrophone lever?
Code:
if Handled.Value < 0.0:
HydrophoneStation.Hydrophone_Volume(-1.0, True)
else:
HydrophoneStation.Hydrophone_Volume(1.0, True)
Don't know the code for (Hydrophone_Volume) just showing as an example.