General Category > Anim8or v0.98 Discussion Forum
Feature Request Thread
johnar:
In relation to animating in Anim8or, i did a post here about it:
http://www.anim8or.com/smf/index.php?topic=5051.msg40411#msg40411
(the bit with froyds arms moving)
Might help just a little for now.... ;)
slex:
Steve ,
can you implement a possibility for adding a morph keys in scene mode only with one click e.g. right click on appropriate place in morph time track gives a key 0, left click gives a key 1, middle click erases the key, double click works as it is now- edits the key. That would make animating a lot faster
johnar:
The shortcut key 'k', for 'key selected bones' is a beautifull thing.
I wonder if it could also be used for 'key selected morph(s)' ?
That would be really handy.
Raxx:
A couple of ASL-related requests, related to the CelShadurr script I'm working on and reasonable for future development:
* Create/Edit Double Sided Materials: Seems like only the front side is accessible
* Don't deselect when creating a parametric shape with right-click: Like with spheres, cubes, and cylinders, when you right-click and drag to create a parametric shape, it shouldn't deselect all other shapes but instead add to the selection.
* Divide point2/point3 by floats/ints: If you try (2.0,4.0,3.0)/2, it should return (1.0, 2.0, 1.5).
* MsgBox(<String> Title, <String> Text,<Int> Type, <String> Content): Popup a message box. If Type 0 then it's a regular alert (just has an OK button). If it's Type 1 then it's a confirmation (OK and Cancel--Returns 1 or 0). If Type 2 then it's a prompt (Input text field, OK, and Cancel, returns String or Null). If it's a prompt then it auto fills the input text with the Content parameter when it pops up. So some examples might be...
function selectText(containerid){if(document.selection){var range = document.body.createTextRange();range.moveToElementText(document.getElementById(containerid));range.select();}else if (window.getSelection){var range = document.createRange();range.selectNode(document.getElementById(containerid));window.getSelection().removeAllRanges();window.getSelection().addRange(range);}}ASL Snippet//A Prompt BoxString $alert1;$alert1 = MsgBox("Hello", "What is your name?", 2, "Bob"); // A Confirmation boxif($alert1 != NULL) MsgBox("Please Confirm", PrintToString("That %s is reeeeeealllly your name", $alert1), 1);else // An alert box MsgBox("...", "How Rude!", 0);This should be pretty easy to implement (relative to...other requests) and extremely useful for command scripts.
thecolclough:
for Scene Mode: when editing an element through its properties dialogue, could the Parent box be made into a dropdown containing a list of all other elements which are eligible to be set as the current element's parent (i.e. any that wouldn't cause circular dependencies)?
Navigation
[0] Message Index
[#] Next page
[*] Previous page
Go to full version