View Single Post
# 164 25-08-2008 , 12:42 PM
BennyK's Avatar
Registered User
Join Date: Oct 2007
Location: IL
Posts: 738
Sorry if this was mentioned. I'm still at page 6. Thanks a lot for everyone :bow: .

Thought I'll add something I use a lot:
Create a sensitivity hotkey for TTD(tumble, track and dolly) -
I set these to 's' hit and release:
Code:
/*TTD_Sensitivity
Temporally decrease tumble, track and dolly sensitivity*/
dollyCtx -e -scale 0.1 dollyContext;
trackCtx -e -trackScale 0.1 trackContext;
tumbleCtx -e -tumbleScale 0.1 tumbleContext;
Code:
/*TTD_Sensitivity_Release
Restore tumble, track and dolly sensitivity*/
dollyCtx -e -scale 1 dollyContext;
trackCtx -e -trackScale 1 trackContext;
tumbleCtx -e -tumbleScale 1 tumbleContext;
EDIT:
You can probably add manipulator sensitivity too - check my next post and one of the posts at the beginning of this thread. It's been mentioned how to change manipulator tool's sensitivity.


When in doubt, delete history and freeze transformations.

My latest snake game
(Requires DirectX9 SDK and Framework)

Last edited by BennyK; 25-08-2008 at 12:46 PM.