熊谷 凌

Results 49 comments of 熊谷 凌

> This bug is not unique to TurboWarp. This is a [bug in Scratch Addons](https://github.com/ScratchAddons/ScratchAddons/issues/4618) that won't be fixed, as it is ["intentionally out of scope for the Pause addon"](https://github.com/ScratchAddons/ScratchAddons/issues/4618#issuecomment-1140499670)....

I got the idea. we can reimplement `timer.setTimeout` to make it pausable and combine it with Promise.

#79 可能修正了这个问题。

well this is rough, make it more readable.

I'm excited to see the extension coming out as it means that we could now perform GPGPU calculations on TurboWarp, meaning that 3D applications will be blazingly fast and AI...

> [@FurryR](https://github.com/FurryR) 那是给老版本用的,并且已经标注 9.1.30+ 请勿使用了 qqnt 最初的一些版本中启用这个开关确实有用(虽然个人没有感觉到),然而新版本启用此功能会导致上号秒封/无法登录/无法解封,版本更新时属于超级地雷,至少也建议在 9.1.30 版本以后添加“不受支持”属性避免版本更新后遇到上述问题。

`vm.exports.i_will_not_ask_for_help_when_these_break().ScriptTreeGenerator` seems not working, I hope it can be fixed soon.

> 没理解跟 document.all 有什么关系? > > 不写 null | undefined 是因为 koishi 目前并未基于 strictNullCheck 开发,即便写上也没有区别。下个大版本会解决。 typeof null === 'object', typeof undefined === 'undefined', typeof document.all === 'undefined', !!document.all === true

Example 1: ```js await ti.kernel((a) => { return a === 1 ? 2 : a })(1); ``` Example 2: ```js await ti.kernel({ a: ti.template(), b: ti.template(), c: ti.template() }, (a,...