Nooooooooooo!
<img src="http://www.johnnysix.net/games/LongNo.png" border="0" />
Point size range: 1 to 64 preview_prelude.js:36
Uncaught TypeError: Cannot read property 'behavior_insts' of undefined preview.js:1344
Runtime.logic preview.js:1344
Runtime.tick preview.js:1181
(anonymous function)
From this :
// Tick behaviors
// For each type
for (i = 0, leni = this.types_by_index.length; i < leni; i++)
{
type = this.types_by_index;
if (!type.behaviors.length)
continue; // type doesn't have any behaviors
// For each instance in type
for (j = 0, lenj = type.instances.length; j < lenj; j++)
{
var inst = type.instances[j];
// For each behavior-instance in instance
for (k = 0, lenk = inst.behavior_insts.length; k < lenk; k++)
Uncaught TypeError: Cannot read property 'behavior_insts' of undefined
{
inst.behavior_insts[k].tick();
}
}
}