|
grgfang 發表於 Mar 17, 2017 3:44:28 GMT
需求說明: - 為提升執行效能的考量。
- 系統不需自動截圖。
- 如果腳本可以先從畫面截圖,後續其實會從這個畫面做很多的判斷(因為畫面內容不會改變),再決定對應的方式。
請問可以自行決定截圖的時間點嗎? 程式示意:基本上就是一個大迴圈,來處理所有可能的狀況。 while true do -- 腳本指定從畫面截圖,系統不需自動截圖 if exists(...) then ... elseif exists(...) then ... ... else ... end end
|
|
|
AnkuLua 發表於 Mar 19, 2017 4:18:31 GMT
可以使用usePreviousSnap()
usePreviousSnap(false) exist("test.png", 0) -- 只是為了取得截圖 uesPreviousSnap(true) -- 接下來的動作就會重複使用剛剛的截圖 if exists(...) then ... elseif exists(...) then ... ... else ... end
usePreviousSnap(false) -- 記得回復成要截圖,不然就GG了
|
|
|
grgfang 發表於 Mar 19, 2017 11:50:26 GMT
可以使用usePreviousSnap() usePreviousSnap(false) exist("test.png", 0) -- 只是為了取得截圖 uesPreviousSnap(true) -- 接下來的動作就會重複使用剛剛的截圖 if exists(...) then ... elseif exists(...) then ... ... else ... end
usePreviousSnap(false) -- 記得回復成要截圖,不然就GG了
超感謝! 趕緊來試試。
|
|