Click "see Inside" This is an original technique that I call "pseudo-turbo mode", I use in this project: https://scratch.mit.edu/projects/439612533/ The principle is to use a function that doesn't refresh, use a loop to run scripts, and if the function had run more than (1/refresh rate)seconds (detect the time by the "days since 2000" block, use the current time minus the time when the function started, to get the elapsed time) and exit the loop and function to refresh the screen. This principle is almost the same as the warp timer (scratch's stuck checking system), but the refresh speed is much faster. warp timer is 2/s, this is 30/s or 60/s, or any other numbers you want.
點擊「切換到程式頁面」 這是一種我稱之為「偽加速模式」的原創技術,我在這個專案中使用:https://scratch.mit.edu/projects/439612533/ 原理是使用一個不刷新畫面的函式,在函式中使用迴圈運行程式,而如果函式已運行超過 (1/刷新速度)秒 (通過「2000年迄今日數」塊檢測時間,將現在時間減去函式開始時的時間以獲取經過時間) 就退出函式以刷新畫面。這個原理和warp timer (scratch的防卡死功能) 的原理幾乎一樣,只是刷新速度快的多。warp timer是2/s,這是30/s或60/s,或是任何其他你想要的數字。