Moved shared into runtime
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "Pacore.Editor",
|
"name": "Pacore.Editor",
|
||||||
"rootNamespace": "",
|
"rootNamespace": "",
|
||||||
"references": [
|
"references": [
|
||||||
"GUID:73bc4dcce6d82e44c8fe9738b987d694"
|
"GUID:92a828b1c98146b48b5a7061ab1e8d2e"
|
||||||
],
|
],
|
||||||
"includePlatforms": [],
|
"includePlatforms": [],
|
||||||
"excludePlatforms": [],
|
"excludePlatforms": [],
|
||||||
|
|||||||
@@ -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,8 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: e8fb5ee44809416428d079d41246c55b
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Pacore.Shared"
|
|
||||||
}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 73bc4dcce6d82e44c8fe9738b987d694
|
|
||||||
AssemblyDefinitionImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -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