Re: miniSphere 5.0rc
Reply #2161 –
Here's a new time-saving feature coming to SSj 5.0: quick refs. These give you a way to quickly drill down into objects using the examine command without having to keep retyping property names over and over again. For example:
src/SEngine.mjs:230 [anonymous function]
(ssj) v
var j 0
var done false
var entity {...} *42
var vec {...} *56
var target {...} *70
var runTime {...} *84
var inputs {...} *98
src/SEngine.mjs:230 [anonymous function]
(ssj) x *84
prop __proto__ {...} *115
prop HUD {...} *116
prop windowStyle {...} *117
prop input {...} *118
prop font {...} *119
prop x 5
prop y 320
prop width 630
prop height 150
prop queue {...} *124
prop keys {...} *125
Speaking of time-savers, it's also no longer necessary to quote an expression for eval or examine when it contains spaces, you can just type, e.g., eval 2 + 2 and it will work.