| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /**
- * Copyright (c) 2021 Vuplex Inc. All rights reserved.
- *
- * Licensed under the Vuplex Commercial Software Library License, you may
- * not use this file except in compliance with the License. You may obtain
- * a copy of the License at
- *
- * https://vuplex.com/commercial-library-license
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- using UnityEngine;
- namespace Vuplex.WebView {
- /// <summary>
- /// An interface implemented by a webview if it supports `MovePointer`,
- /// which can be used to implement hover or drag-and-drop interactions.
- /// </summary>
- public interface IWithMovablePointer {
- /// <summary>
- /// Moves the pointer to the given point in the webpage.
- /// </summary>
- /// <remarks>
- /// This can be used to trigger hover effects in the page or can be used
- /// in conjunction with the `IWithPointerDownAndUp` interface to implement
- /// drag-and-drop interactions.
- /// </remarks>
- /// <param name="point">
- /// The x and y components of the point are values
- /// between 0 and 1 that are normalized to the width and height, respectively. For example,
- /// `point.x = x in Unity units / width in Unity units`.
- /// Like in the browser, the origin is in the upper-left corner,
- /// the positive direction of the y-axis is down, and the positive
- /// direction of the x-axis is right.
- /// </param>
- void MovePointer(Vector2 point);
- }
- }
|