Anim8or Scripting Language
(Created page with "{{FormatInfo |formattype=Languages |subcat=Programming Languages |extensions={{ext|a8s}}, {{ext|txt}}, {{ext|asl}} |released=2006 }} '''Anim8tor Scripting Language''' ('''ASL'...") |
Dan Tobias (Talk | contribs) |
||
Line 25: | Line 25: | ||
== References == | == References == | ||
<references /> | <references /> | ||
+ | |||
+ | [[Category:Graphics]] |
Revision as of 14:40, 30 December 2019
Anim8tor Scripting Language (ASL) can be used by the 3d modeling and animation program Anim8tor. ASL scripts can add various areas of functionality, including editor features and export formats.[1] Like many other languages, its general syntax is based on that of C. It was first added to Anim8tor in version 0.95[1] in 2006[2].
Contents |
Extensions
ASL uses the extension ".a8s" when being run as a plugin at startup, and ".txt" when being run in the middle of Anim8tor execution. The specification is called ".ASL spec"[3], which seems to suggest that it can also use the extension ".asl", but this isn't mentioned anywhere else.
Identification
ASL scripts have no strict format, but can probably be expected to have one "directive" (which identifies the category of functionality of the script) near the beginning. These are (in ASCII): #command
, #file
, #plugin
, #parameter
, #return
, and #button
.[4]