Updata to v.0.8.0
Hello Alexie. Thanks for the heads up. I'll try to fix a soon as I can. As for jquery, it is optional and the library should work without it (even though it is flagged as missing by the browser). Thanks.
Thanks Ramiro. That would indeed be a cool effect. But from what I heard, it's not that simple and it is a library in itself (like turnjs). But I'll see if I can incorporate it in a future release.
Update to v0.7.5 (WebGL)
Update to v.0.7.0
@Ramiro You're correct, it just displays the full variable. To display individual array elements, you'd have to patch the code a little. In vncanvas-base.js (around line 286+), look for: // Helper function to search for user variable findVar: function (id) { if (Stage.variables[id] != null) return Stage.variables[id].Value(); return null; }, Replace with the following: // Helper function to search for user variable findVar: function (id) { var ids = id.split(/[\[\]]/g); if (Stage.variables[ids[0]]...
Update to v.0.6.3
Update to v.0.6.2