Guest User

Untitled

a guest
Jul 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. lookAtPanel( )
  2. {
  3. if ( llGetPermissions() & PERMISSION_CONTROL_CAMERA )
  4. {
  5. llOwnerSay("Controlling the camera...");
  6. vector camFocus = llGetPos(); //<81, 230, 30> ;
  7. vector camPos = camFocus + <3, 0, 0>;
  8. llClearCameraParams(); // reset camera to default
  9. llSetCameraParams([
  10. CAMERA_ACTIVE, TRUE, // 1 is active, 0 is inactive
  11. CAMERA_FOCUS, camFocus, // region relative position
  12. CAMERA_POSITION, camPos, // region relative position
  13. CAMERA_FOCUS_LOCKED, TRUE, // (TRUE or FALSE)
  14. CAMERA_POSITION_LOCKED, TRUE // (TRUE or FALSE)
  15. ]);
  16. }
  17. else
  18. llOwnerSay("This object doesn't have permission over the avie");
  19. }
Add Comment
Please, Sign In to add comment