View Single Post
Old 05-23-2013, 01:00 PM   #8
Justin
Administrator
 
Justin's Avatar
 
Join Date: Jan 2005
Location: NYC
Posts: 15,746
Default

Quote:
Originally Posted by beyond View Post
Any chance, these could also be delay compensated (multithreaded render ahead, etc.)?
Not possible, no.


Getting back to the main topic:

In the next build (4.5rc2), you will be able to use _global.* across instances, and regXX are mapped to _global.regXX.

You can also use the namespace facility with this, so you could do:
Code:
function inc() (
  this.value += 1;
);

_global.inc(); // _global.value += 1;
_global.boo.inc(); // _global.boo.value += 1;
Justin is offline   Reply With Quote