コガネブログ

平日更新を目標に Unity や C#、Visual Studio、ReSharper などのゲーム開発アレコレを書いていきます

【Unity】【Airtest IDE】【Poco】ゲームオブジェクトをドラッグする方法

概要

f:id:baba_s:20181003213534g:plain

Poco を使用してゲームオブジェクトをドラッグしたい場合は drag_to 関数を使用します

# -*- encoding=utf8 -*-
from poco.drivers.unity3d import UnityPoco
poco = UnityPoco()

button = poco('Button')
target = poco('Target')

# 2秒間かけてドラッグします
button.drag_to(target)

# 0.5秒間かけてドラッグします
button.drag_to(target, 0.5)

参考サイト様