gajse-filetext
v0.1.0
Published
GAJSE Official addon that adds support for load Files for the Text interface
Downloads
2
Maintainers
Readme
gajse-filetext
GAJSE Official addon for support Files on the Text interface.
Before gajse-filetext :
var text=new api.ScriptedText(function(){
var Character=char.getCharacterTalker();
Character("Say hello to the world!");
});
text.speak();
After gajse-filetext :
/* in the scene file */
var FileText=require("gajse-filetext");
var text=new FileText("hello.js");
text.speak();
/* in the hello.js */
var Character=new api.Character("Character","pink").getCharacterTalker();
Character("Say hello to the world");