Update VLM.py

This commit is contained in:
Netceor 2023-11-08 19:46:01 +08:00 committed by GitHub
parent 67add81c1f
commit 4fc639cb45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -14,9 +14,15 @@ class SceneVLM(Scene):
pass
def _run(self, op_type=1):
# 12个操作顺序测试
# for i in range(1,13):
# if i<=10:
# self.move_task_area(i)
# self.op_task_execute(i)
self.move_task_area(op_type)
if op_type<=10:
self.move_task_area(op_type)
self.op_task_execute(op_type)
def _step(self):
pass
pass