Had time to play this table now and I must say that is really nice. Thank you guys. I do have a question though. I can’t seem to use the magnasave keys to change contrast as described in the table script ?!
Good catch. I didn’t actually script that into the table. Add the following to the Table1_KeyDown sub and you’ll be able to play with contrast settings on the fly:
If keycode = RightMagnaSave Then
ContrastSetting = ContrastSetting + 1
If ContrastSetting > 7 Then ContrastSetting = 7 End If
If ContrastSetting=0 or ContrastSetting=2 or ContrastSetting=4 or ContrastSetting=6 Then ChangeGlow(True) Else ChangeGlow(False) End If
ColorGrade()
End If
If keycode = LeftMagnaSave Then
ContrastSetting = ContrastSetting – 1
If ContrastSetting < 0 Then ContrastSetting = 0 End If
If ContrastSetting=0 or ContrastSetting=2 or ContrastSetting=4 or ContrastSetting=6 Then ChangeGlow(True) Else ChangeGlow(False) End If
ColorGrade
End If
Current Project: Perpetual updates of VPX physics.
Current Project: Perpetual updates of VPX physics.
You need to login in order to like this post: click here