• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

[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