For Example:
With linking books. You click on them, and Plasma registers the MultiStageBehMod, and brings you to the book. (this is called the smart seek of the behmod) Then the book pops up, and you link in, the mutistagebehmod than goes through its final process of the link animation. (or with a multiplayer environment there's a third option, between these two, of sharing the book. This again activates a link animation for the share option.
So, for integrating these into blender. Couldn't we do something like parenting empty's for the POS's and regions for the shareseek region. Then have an alcscript for it that looks something like:
- Code: Select all
LinkingBook:
logic:
actions:
- type: multistage
name: LinkBookMultiStage
multistage:
smartseek: SmartPOS
sharepos: ShareRgn
animation: ShareBook
linkoutpos:
animation: LinkOut
(Simplistic, but its the first thing that came to mind for an example alcscript. What this would do, is parent empties together for the points of a multistagebehmod. Or something to that effect. Its late, and maybe I am not getting my point across on this. But, to me, that makes the most sense for implementing it into blender anyway.