• 🏆 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!

Permanent Camera

Status
Not open for further replies.
Level 2
Joined
Jun 22, 2012
Messages
19
I'm not entirely sure if that's possible. If you do every .01 seconds, then there should be no problem (players will not at all be able to zoom in). Why not just make a trigger that allows players to choose how far away their camera is? I don't think locking the camera to a target would work in your situation, either.
 
Level 33
Joined
Mar 27, 2008
Messages
8,035
You can make a system that detects Player's chat message and change the variable, something like this;
  • Untitled Trigger 002
    • Events
      • Player - Player 1 (Red) types a chat message containing -distance as A substring
    • Conditions
    • Actions
      • Set CamDistance[(Player number of (Triggering player))] = (Real((Substring((Entered chat string), 10, 12))))
      • Camera - Set (Triggering player)'s camera Distance to target to CamDistance[(Player number of (Triggering player))] over 3.00 seconds
You can let the Player change variables (Camera Properties) in-game, while playing.
 
Status
Not open for further replies.
Top