public static T GetPooled (Event systemEvent);
public static T GetPooled (UIElements.IMouseEvent triggerEvent);
protected static T GetPooled (UIElements.IPointerEvent pointerEvent);
public static T GetPooled (Vector2 position, int button, int clickCount, Vector2 delta, EventModifiers modifiers);

参数

systemEventIMGUI 鼠标事件。
triggerEvent发送了此事件的事件。
pointerEvent发送了此事件的指针事件。
position鼠标位置。
button按下鼠标键。
clickCount收到的连续鼠标点击次数。
delta鼠标相对于上次接收事件时的相对位置移动。
modifiers事件过程中按下的修改键。

返回

T 已初始化的事件。

描述

从事件池获取事件并用给定值初始化。请使用此函数而不是创建新事件。需要将使用此方法获取的事件释放回池中。可以使用 `Dispose()` 进行释放。