Benny Lichtner
Benny Lichtner
I'm also seeing this in chrome
It appears to happen when the `Array` prototype gets messed with before calling micromodal.init(), which jquery seems to do on import. E.g. to reproduce: ``` Array.prototype.randomElement = function () {...
What about a new world or patches property that defines whether or not the world wraps?
Here's what I did that made me run into that error: 1) Click run forever on one of the blocks that moves turtles 2) Try changing forward(1) to forward(10). All...
@backspaces I did a little user-testing of the homepage tutorial, and this came up again. I think we should figure out a solution before launching the new site. This problem...
If you're worried about performance hits, maybe we could have only a dev build that does these checks?
I'm monkey-patching Turtle3D in the IDE and tutorial for now: ``` import Turtle3D from '/agentscript/src/Turtle3D.js' let check = (d) => { if (typeof d !== 'number') { throw new Error(`Function...
Hey @gepr ! Sorry to take so long to look at this. Thanks for the PR--we're definitely in need of a better javascript example, and this one's great! I'll make...
> should they keep variables that are not in the new breed? Maybe they should. We haven't really been using the `turtles own` syntax in our models. I think maybe...
See code example at bottom of [here](http://ccl.northwestern.edu/netlogo/docs/dictionary.html#set-default-shape)--in netlogo, changing an agent's breed updates that agent's shape. > Would you do it? Yes! > I had a thought about defaults: they...