Compare commits
2 Commits
25aebd17fa
...
540d6444a6
| Author | SHA1 | Date | |
|---|---|---|---|
| 540d6444a6 | |||
| d3c7505abf |
@@ -1,4 +1,4 @@
|
|||||||
using PashaBibko.Pacore.Shared.Attributes;
|
using PashaBibko.Pacore.Attributes;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using PashaBibko.Pacore.Shared.Attributes;
|
using PashaBibko.Pacore.Attributes;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using PashaBibko.Pacore.Shared.Attributes;
|
using PashaBibko.Pacore.Attributes;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using Object = UnityEngine.Object;
|
using Object = UnityEngine.Object;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using PashaBibko.Pacore.Shared.Attributes;
|
using PashaBibko.Pacore.Attributes;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using UnityEditor;
|
using UnityEditor;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using UnityEngine.Scripting;
|
using UnityEngine.Scripting;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace PashaBibko.Pacore.Shared.Attributes
|
namespace PashaBibko.Pacore.Attributes
|
||||||
{
|
{
|
||||||
[Preserve, AttributeUsage(AttributeTargets.Class)]
|
[Preserve, AttributeUsage(AttributeTargets.Class)]
|
||||||
public class CreateInstanceOnStartAttribute : Attribute { }
|
public class CreateInstanceOnStartAttribute : Attribute { }
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace PashaBibko.Pacore.Shared.Attributes
|
namespace PashaBibko.Pacore.Attributes
|
||||||
{
|
{
|
||||||
[MeansImplicitUse, AttributeUsage(validOn: AttributeTargets.Field)]
|
[MeansImplicitUse, AttributeUsage(validOn: AttributeTargets.Field)]
|
||||||
public sealed class DetectInspectorChangesAttribute : PropertyAttribute
|
public sealed class DetectInspectorChangesAttribute : PropertyAttribute
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using JetBrains.Annotations;
|
using JetBrains.Annotations;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace PashaBibko.Pacore.Shared.Attributes
|
namespace PashaBibko.Pacore.Attributes
|
||||||
{
|
{
|
||||||
[MeansImplicitUse, AttributeUsage(AttributeTargets.Method)]
|
[MeansImplicitUse, AttributeUsage(AttributeTargets.Method)]
|
||||||
public class InspectorCallableAttribute : Attribute
|
public class InspectorCallableAttribute : Attribute
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ using JetBrains.Annotations;
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace PashaBibko.Pacore.Shared.Attributes
|
namespace PashaBibko.Pacore.Attributes
|
||||||
{
|
{
|
||||||
#if UNITY_EDITOR
|
#if UNITY_EDITOR
|
||||||
[MeansImplicitUse, AttributeUsage(validOn: AttributeTargets.Field)]
|
[MeansImplicitUse, AttributeUsage(validOn: AttributeTargets.Field)]
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using System;
|
using UnityEngine;
|
||||||
using UnityEngine;
|
using System;
|
||||||
|
|
||||||
namespace PashaBibko.Pacore.Shared.Attributes
|
namespace PashaBibko.Pacore.Attributes
|
||||||
{
|
{
|
||||||
[AttributeUsage(AttributeTargets.Field)]
|
[AttributeUsage(AttributeTargets.Field)]
|
||||||
public class MonoScriptAttribute : PropertyAttribute
|
public class MonoScriptAttribute : PropertyAttribute
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ using System.Linq;
|
|||||||
using System;
|
using System;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace PashaBibko.Pacore.Runtime
|
namespace PashaBibko.Pacore
|
||||||
{
|
{
|
||||||
public static class ClassAttributeCache
|
public static class ClassAttributeCache
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
using PashaBibko.Pacore.Shared.Attributes;
|
using PashaBibko.Pacore.Attributes;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
using Object = UnityEngine.Object;
|
using Object = UnityEngine.Object;
|
||||||
|
|
||||||
namespace PashaBibko.Pacore.Runtime
|
namespace PashaBibko.Pacore
|
||||||
{
|
{
|
||||||
public static class CreateInstanceOnStartLoader
|
public static class CreateInstanceOnStartLoader
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace PashaBibko.Pacore.Shared.DevTools
|
namespace PashaBibko.Pacore.DevTools
|
||||||
{
|
{
|
||||||
public static class CodeProfiler
|
public static class CodeProfiler
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using PashaBibko.Pacore.Shared.Attributes;
|
using PashaBibko.Pacore.Attributes;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
[CreateInstanceOnStart] public class TestMonoBehaviour : MonoBehaviour
|
[CreateInstanceOnStart] public class TestMonoBehaviour : MonoBehaviour
|
||||||
|
|||||||
Reference in New Issue
Block a user