mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-24 22:47:59 +01:00
15 lines
379 B
C#
15 lines
379 B
C#
|
// Amplify Motion - Full-scene Motion Blur for Unity Pro
|
||
|
// Copyright (c) Amplify Creations, Lda <info@amplify.pt>
|
||
|
|
||
|
using UnityEngine;
|
||
|
using UnityEditor;
|
||
|
using System.Collections;
|
||
|
using UnityEditor.Callbacks;
|
||
|
using UnityEditorInternal;
|
||
|
|
||
|
[InitializeOnLoad]
|
||
|
[CustomEditor( typeof( AmplifyMotionObject ) )]
|
||
|
public class AmplifyMotionObjectEditor : AmplifyMotionObjectEditorBase
|
||
|
{
|
||
|
}
|