mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-24 14:37:59 +01:00
92 lines
2.5 KiB
C#
92 lines
2.5 KiB
C#
// Amplify Motion - Full-scene Motion Blur for Unity Pro
|
|
// Copyright (c) Amplify Creations, Lda <info@amplify.pt>
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEditor;
|
|
|
|
namespace AmplifyMotion
|
|
{
|
|
public class About : EditorWindow
|
|
{
|
|
private const string AboutImagePath = "AmplifyMotion/Textures/About.png";
|
|
private Vector2 m_scrollPosition = Vector2.zero;
|
|
private Texture2D m_aboutImage;
|
|
|
|
[MenuItem( "Window/Amplify Motion/About...", false, 20 )]
|
|
static void Init()
|
|
{
|
|
About window = ( About ) EditorWindow.GetWindow( typeof( About ) , true , "About Amplify Motion" );
|
|
window.minSize = new Vector2( 502, 258 );
|
|
window.maxSize = new Vector2( 502, 258 );
|
|
window.Show();
|
|
}
|
|
|
|
public void OnFocus()
|
|
{
|
|
string[] guids = AssetDatabase.FindAssets( "About t:Texture" );
|
|
string asset = "";
|
|
|
|
foreach ( string guid in guids )
|
|
{
|
|
string path = AssetDatabase.GUIDToAssetPath( guid );
|
|
if ( path.EndsWith( AboutImagePath ) )
|
|
{
|
|
asset = path;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ( !string.IsNullOrEmpty( asset ) )
|
|
{
|
|
TextureImporter importer = AssetImporter.GetAtPath( asset ) as TextureImporter;
|
|
|
|
if ( importer.textureType != TextureImporterType.GUI )
|
|
{
|
|
importer.textureType = TextureImporterType.GUI;
|
|
AssetDatabase.ImportAsset( asset );
|
|
}
|
|
|
|
m_aboutImage = AssetDatabase.LoadAssetAtPath( asset, typeof( Texture2D ) ) as Texture2D;
|
|
}
|
|
else
|
|
Debug.LogWarning( "[AmplifyMotion] About image not found at " + AboutImagePath );
|
|
}
|
|
|
|
public void OnGUI()
|
|
{
|
|
m_scrollPosition = GUILayout.BeginScrollView( m_scrollPosition );
|
|
|
|
GUILayout.BeginVertical();
|
|
|
|
GUILayout.Space( 10 );
|
|
|
|
GUILayout.BeginHorizontal();
|
|
GUILayout.FlexibleSpace();
|
|
GUILayout.Box( m_aboutImage, GUIStyle.none );
|
|
|
|
if ( Event.current.type == EventType.MouseUp && GUILayoutUtility.GetLastRect().Contains( Event.current.mousePosition ) )
|
|
Application.OpenURL( "http://www.amplify.pt" );
|
|
|
|
GUILayout.FlexibleSpace();
|
|
GUILayout.EndHorizontal();
|
|
|
|
GUIStyle labelStyle = new GUIStyle( EditorStyles.label );
|
|
labelStyle.alignment = TextAnchor.MiddleCenter;
|
|
labelStyle.wordWrap = true;
|
|
|
|
GUILayout.Space( 10 );
|
|
|
|
GUILayout.Label( "\nAmplify Motion " + VersionInfo.StaticToString() + " - Full-scene Motion Blur", labelStyle, GUILayout.ExpandWidth( true ) );
|
|
|
|
GUILayout.Space( 6 );
|
|
|
|
GUILayout.Label( "\nCopyright (c) Amplify Creations, Lda. All rights reserved.\n", labelStyle, GUILayout.ExpandWidth( true ) );
|
|
|
|
GUILayout.EndVertical();
|
|
|
|
GUILayout.EndScrollView();
|
|
}
|
|
}
|
|
}
|