gajse-filetext

0.1.0 • Public • Published

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");

Package Sidebar

Install

npm i gajse-filetext

Weekly Downloads

1

Version

0.1.0

License

Public Domain

Last publish

Collaborators

  • adrian.arroyocalle