Jump to content

PN remove visor zoom


inIimbo

Recommended Posts

i think changing something here will acomplish what im trying to do

anyone who is GECK literate, can you give me guidance

im trying to remove the zoom in function of the visor overlay




; Overlay scale

Begin GameMode


; Zooming

if isControlPressed 6 == 1

set nextScale to PNxCVisorZoomScale

else

set nextScale to PNxCVisorScale

endif


if curScale != nextScale || updateScale == 1

set updateScale to 1


if curScale > nextScale

set curScale to curScale - 0.05

if curScale < nextScale

set curScale to nextScale

endif

else

set curScale to curScale + 0.05

if curScale > nextScale

set curScale to nextScale

endif

endif


setUIFloat "HUDMainMenu\_PNxVisorScale" curScale

endif


End

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...