mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-24 14:37:59 +01:00
14 lines
565 B
C#
14 lines
565 B
C#
|
// Amplify Motion - Full-scene Motion Blur for Unity Pro
|
||
|
// Copyright (c) Amplify Creations, Lda <info@amplify.pt>
|
||
|
|
||
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[RequireComponent( typeof( Camera ) )]
|
||
|
[AddComponentMenu( "Image Effects/Amplify Motion" )]
|
||
|
public class AmplifyMotionEffect : AmplifyMotionEffectBase
|
||
|
{
|
||
|
public static new AmplifyMotionEffect FirstInstance { get { return ( AmplifyMotionEffect ) AmplifyMotionEffectBase.FirstInstance; } }
|
||
|
public static new AmplifyMotionEffect Instance { get { return ( AmplifyMotionEffect ) AmplifyMotionEffectBase.Instance; } }
|
||
|
}
|