A slightly long rant about the motivation behind Visulie
Visual effects and animations are two properties that make or break a game. While Roblox offers a variety of animation tools as well as plugins created by the many talented developers on this platform, what has been bugging many developers the most (including me!) is simply the lack of a general-use, pragmatic animation software.
What has been one of the largest (if not the largest) consumer of my time when developing my games is simply creating the 2D and 3D visual effects. Not only do I have to code all the different interactions (which may take hundreds of lines of code!), but you also have to run the game to see how the animation plays out. On top of that, I’m forced to manage an overwhelming number of instances under my animation code, which isn’t very optimal.
(thanks, Code Stats!)
13 thousand lines of animation code and counting. That’s preposterous!
And this gave me enough motivation to create Visulie. Which I believe (as far as I know), is the first of it’s kind on Roblox.
Visulie is a one-of-a-kind plugin that allows you to animate virtually any Instance, along with the majority of their properties (including ones that can’t be animated using TweenService!). It supports all of the datatypes offered by TweenService, as well as smoothly interpolate datatypes without a built-in lerping method, such as:
As an added bonus, you can also add keyframes for method calls, such as Emit()
for ParticleEmitters, and Play()
for Sounds.
“Rigging”
Visulie does not use the standard rigging techniques that you may be used to. Instead of using Motor6Ds, Visulie uses the more intuitive approach of parenting, of which BaseParts parented to other BaseParts will have their CFrames transform relative to their parent. Here’s a quick demonstration:
Version Handling
Through the natural evolution of the plugin, expect changes to how data is formatted, as well as the required Visulie version to read the new format. For version handling, make use of the “Scan for Outdated” option:
If you’ve already bought and used Visulie a few years back, this feature can help you update to the latest version!
Animating
When you create a new file, you might notice an instance called the “Origin”. This part is where all parts will be animated relatively towards. If you animate a part 5 studs away from the origin, that part will be 5 studs away from wherever you decide to play your animation in-game.
Here, the animation was made exactly where the origin is. Notice how it’s played exactly where you instantiate the animation:
This animation was made 10 studs from the origin. Notice how it’s played exactly 10 studs from where you instantiate the animation:
Exporting/Importing
Animations you create can be exported, as well as imported to edit an existing animation:
Runtime Playback
Through the Visulie Renderer, you can play the exported animations during runtime, supporting many useful animation features such as:
- Playback speed
- Framerate
- Animation events
…
Here’s the place file shown in the video above:
VisuliePlaybackExample.rbxl (62.0 KB)
Your purchase comes with the entire Visulie Suite, which includes the Editor as well as all versions of the Visulie Renderer.
FAQ
Why not MoonAnimator?
Moon Animator is used as an alternative to the built-in editor. Its purpose is more suited to create rigged content, rather than executable content during runtime as runtime playback faces the same limitations as Roblox animation.
Can I share my creations?
Yes! All animations you create from Visulie is your property. You may redistribute all animations you create, as well as the corresponding Visulie Renderer version (not the plugin!).
I’m not hearing any audio in studio, is that a bug?
Currently, plugins are limited to where they’re able to play audio within a studio session. This issue will be immediately fixed once this feature request is resolved. For the time being, you must export and play your animations during runtime to hear your audio play in sync.