The amount of info on gmod on the web is [B]terrible[/B] - there was [I]absolutely[/I] [B]nothing[/B] I could find on this!
I'm trying to film, but I can't figure out how to change the FOV. I tried fov_desired, but it's limited to 75-90. The camera tool is also not an option, because I need the physgun at the time.
[U]Why can't you just zoom a camera???[/U]
There will be always a limit between 0.1 and 180. If you need this, type this into console:
[code]lua_run Entity(1):SetFOV(20,0)[/code]
Where 20 is the desired FOV, 0 is the transition time between current and desired FOV.
To reset back, just use:
[code]lua_run Entity(1):SetFOV(0,0)[/code]
Entity(1) is the first player on server.
Thanks!
I also can't figure out how to hide that damn unfreeze notification... why hasn't anyone handled this?
[QUOTE=Talvy;44509809]Thanks!
I also can't figure out how to hide that damn unfreeze notification... why hasn't anyone handled this?[/QUOTE]
[del]
[url]http://wiki.garrysmod.com/page/GM/HUDShouldDraw[/url]
I'm guessing it would be Message or HintDisplay[/del]
You can override the function...
[code]
oldnotify = notification.AddLegacy
notification.AddLegacy = function() end --will do nothing now
[/code]
EDIT: Just so you know the sound will still play.
Sorry, you need to Log In to post a reply to this thread.