From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../UniWebView/Script/UniWebViewTransitionEdge.cs | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Client/Assets/Scripts/UniWebView/Script/UniWebViewTransitionEdge.cs (limited to 'Client/Assets/Scripts/UniWebView/Script/UniWebViewTransitionEdge.cs') diff --git a/Client/Assets/Scripts/UniWebView/Script/UniWebViewTransitionEdge.cs b/Client/Assets/Scripts/UniWebView/Script/UniWebViewTransitionEdge.cs new file mode 100644 index 00000000..06fd3e56 --- /dev/null +++ b/Client/Assets/Scripts/UniWebView/Script/UniWebViewTransitionEdge.cs @@ -0,0 +1,31 @@ +// +// UniWebViewTransitionEdge.cs +// Created by Wang Wei(@onevcat) on 2015-11-16. +// + +/// +/// Transition edges of webview. You can specify an edge in Show() or Hide() methods of web view. +/// +public enum UniWebViewTransitionEdge +{ + /// + /// No transition when showing or hiding. + /// + None = 0, + /// + /// Transit the web view from/to top. + /// + Top, + /// + /// Transit the web view from/to left. + /// + Left, + /// + /// Transit the web view from/to bottom. + /// + Bottom, + /// + /// Transit the web view from/to right. + /// + Right +} -- cgit v1.1-26-g67d0