tS7.6 Animation Panel
-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
tS7.6 Animation Panel
tS7.6 Animation Panel
.
It has most of the functionality that the Animation Editor toolbar has,
except it has a timeline Scrubber. Drag & Drop into the D3D View.
You can use it with or without the Animation Editor.
R = Record Keyframe / Keying Panel
P = Play / Stop
|< = Start Frame
< = Previous Frame
<< = Previous Keyframe
>> = Next Keyframe
> = Next Frame
>| = End Frame
Edit: Updated 9/22/2024: For those that have downloaded any previous versions of this Animation panel, this version has been revamped and includes more functions on the inner workings.
Add: Play Range, Advance Frame, and Close [X] button
Post by clintonman » Thu Aug 01, 2019 4:56 pm Issue was fixed in the previous version
It has most of the functionality that the Animation Editor toolbar has,
except it has a timeline Scrubber. Drag & Drop into the D3D View.
You can use it with or without the Animation Editor.
R = Record Keyframe / Keying Panel
P = Play / Stop
|< = Start Frame
< = Previous Frame
<< = Previous Keyframe
>> = Next Keyframe
> = Next Frame
>| = End Frame
Edit: Updated 9/22/2024: For those that have downloaded any previous versions of this Animation panel, this version has been revamped and includes more functions on the inner workings.
Add: Play Range, Advance Frame, and Close [X] button
Post by clintonman » Thu Aug 01, 2019 4:56 pm Issue was fixed in the previous version
- Attachments
-
- tS76 Animation Panel.RsObj
- (105.79 KiB) Downloaded 32 times
-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
Re: tS7.6 Animation Panel
Update: 1/21/2010 9:38 AM PST
I updated this tS7.6 Animation Panel as the last version had a bug in the installer.
I updated this tS7.6 Animation Panel as the last version had a bug in the installer.
-
danperk
Re: tS7.6 Animation Panel
Thanks for your work on this and the other plugs tB!!
Have you noticed that truePlay won't play any frames beyond 300?
I can manually scrub past 300 but the range setting must be different for truePlay
than tS.
Have you noticed that truePlay won't play any frames beyond 300?
I can manually scrub past 300 but the range setting must be different for truePlay
than tS.
-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
Re: tS7.6 Animation Panel
I do now! That sucks right along with SEVERAL other issues with truePlay2. errrrrrrrrr!
I do not think it is the Range settings because I can shrink it (400 in this test) within tP2, it just does not play past 300.
Thanks Steve or is that Dan? Hope everything is great your way!
I do not think it is the Range settings because I can shrink it (400 in this test) within tP2, it just does not play past 300.
Thanks Steve or is that Dan? Hope everything is great your way!
-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
Re: tS7.6 Animation Panel
I have updated the scrubbers on this tS7.6 Animation Panel.
Works 100% better!
Works 100% better!
-
clintonman
- Captain
- Posts: 5659
- Joined: 21 May 2009, 21:08
- Type the number ten into the box: 0
- Location: California
Re: tS7.6 Animation Panel
Looks like you solved it with the Activity.KillAll() function, but the problem with the code is that it's running in circles. The red link above shows the Current_Time connector feeding back into the WatchDog, so the RsTime node is constantly feeding itself. If you remove that link, the Activity.KillAll() isn't needed anymore.
-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
Re: tS7.6 Animation Panel
OMG...how in the heck did that happen?
Fixed. Thank YOU!
Fixed. Thank YOU!
-
Draise
- Captain
- Posts: 3200
- Joined: 21 Sep 2009, 19:33
- Type the number ten into the box: 0
- Location: Bogota, Colombia
Re: tS7.6 Animation Panel
I miss trueSpace...
-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
Re: tS7.6 Animation Panel
Come back from the Dark side Draise! I miss YOU too!Draise wrote: 02 Aug 2019, 14:15 I miss trueSpace...
-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
Re: tS7.6 Animation Panel
Found a toolbar button for Model's Animation frame.
It acts like a scrubber. I was wanting to use this in script form for my Animation panel, but unfortunately it is not compatible.
Any ideas on how to write this in jScript?
It acts like a scrubber. I was wanting to use this in script form for my Animation panel, but unfortunately it is not compatible.
Code: Select all
tSBridge.AnimationFrame = tSBridge.AnimationFrame + %STEP;- Attachments
-
- AnimFrame.RsObj
- (22.37 KiB) Downloaded 379 times
-
clintonman
- Captain
- Posts: 5659
- Joined: 21 May 2009, 21:08
- Type the number ten into the box: 0
- Location: California
Re: tS7.6 Animation Panel
I'm guessing you want to scrub both model and workspace? If so this works.
RsTime script
I suspect the "%STEP" only works from a toolbar button.
RsTime script
Code: Select all
function Execute(params)
{
var TimeIn = params.ConValue('TimeIn')
TimeIn = Node.Value("/AnimMng", "AnimTime")
params.ConValue("Current_Time") = TimeIn
tSBridge.AnimationFrame = TimeIn;
}-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
Re: tS7.6 Animation Panel
Awesome, thank you!
Had to do some finagling to get it to work but it works great.
tS761 Animation panel
Workspace Animation on the top and Model Animation on the bottom.
A button to enable synching Model and Workspace's frames. Still need to figure out how to Record a Model keyframe.
Right now the only commands I know of toggles the AutoRecord On/Off
Does not record unless you move the selected object with the widget. Geeeze
Had to do some finagling to get it to work but it works great.
tS761 Animation panel
Workspace Animation on the top and Model Animation on the bottom.
A button to enable synching Model and Workspace's frames. Still need to figure out how to Record a Model keyframe.
Right now the only commands I know of toggles the AutoRecord On/Off
Does not record unless you move the selected object with the widget. Geeeze
-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
Re: tS7.6 Animation Panel
@Clinton
Can you test this and see if it works for you?
Record Model Keyframe
Run the above twice for each additional keyframes
Edit: After further testing this, the AutoRecord has to be in an Enabled state.
Can you test this and see if it works for you?
Record Model Keyframe
Code: Select all
tSBridge.SuggestTSStateByAlias("AnimationAutoRecord")
tSBridge.SuggestTSStateByAlias("AnimationAutoRecord")
tSBridge.SuggestTSStateByAlias("AnimationAutoRecord")
Widgets.Move('',0.000,0.000,0.000);Edit: After further testing this, the AutoRecord has to be in an Enabled state.
-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
Re: tS7.6 Animation Panel
I think I found a way!
The above insures AutoRecord is on.
Code: Select all
tSBridge.XorTypeTSStateByAlias("AnimationAutoRecord")
Widgets.Move('',0.000,0.000,0.000);-
clintonman
- Captain
- Posts: 5659
- Joined: 21 May 2009, 21:08
- Type the number ten into the box: 0
- Location: California
Re: tS7.6 Animation Panel
Nice find. The docs make it sound like it turns it off and on, not just on.trueBlue wrote: 14 Oct 2019, 15:31 I think I found a way!The above insures AutoRecord is on.Code: Select all
tSBridge.XorTypeTSStateByAlias("AnimationAutoRecord") Widgets.Move('',0.000,0.000,0.000);
-
trueBlue
- Captain
- Posts: 5548
- Joined: 06 Jul 2009, 22:50
- Type the number ten into the box: 10
Re: tS7.6 Animation Panel
New update 10/15/2019 for this tS7.6 Animation panel
The button scripts now update the TimeIn attribute.
The button scripts now update the TimeIn attribute.



