You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
456 B
23 lines
456 B
3 years ago
|
// SSAO Pro - Unity Asset
|
||
|
// Copyright (c) 2015 - Thomas Hourdel
|
||
|
// http://www.thomashourdel.com
|
||
|
|
||
|
#if !(UNITY_4_5 || UNITY_4_6 || UNITY_4_7 || UNITY_5_0)
|
||
|
#define UNITY_5_1_PLUS
|
||
|
#endif
|
||
|
|
||
|
// Compatibility layer for Unity < 5.1
|
||
|
|
||
|
namespace SSAOProUtils
|
||
|
{
|
||
|
#if !(UNITY_5_1_PLUS)
|
||
|
using System;
|
||
|
|
||
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
|
||
|
public class HelpURLAttribute : Attribute
|
||
|
{
|
||
|
public HelpURLAttribute(string url) { }
|
||
|
}
|
||
|
#endif
|
||
|
}
|