• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[JASS] First Person Camera moveable Via Mouse

Status
Not open for further replies.
Level 19
Joined
Aug 24, 2007
Messages
2,888
only with RtC
wont work for multiplayer or someone without RtC

I know why you cannot do things with mouse in default Warcraft
little hard to explain
 
Level 19
Joined
Aug 24, 2007
Messages
2,888
Warcraft III doesnt sync the mouse because it would delay much when hosting from a 1mbps internet connection
Without syncing mouse it would be not possible to do it with warcraft engine

Other mouse using games usually sync different values like current aim direction etc
Since warcraft III triggers work with synced values it is not possible

Still I would be happy with a StartMouseSync()
 
Level 19
Joined
Aug 24, 2007
Messages
2,888
even if its possible with trackables you need to relocate mouse after each step

Because fps games work like
wDirection = wDirection + mouse_x - window_width/2;
hDirection = hDirection + mouse_y - window_height/2;
SetMousePosition(window_width/2,window_height/2);
and resetup the camera
 
Status
Not open for further replies.
Top