Moved shared into runtime

This commit is contained in:
2026-01-24 19:55:00 +00:00
parent 3e37cc7e0a
commit d3c7505abf
25 changed files with 17 additions and 35 deletions

View File

@@ -1,4 +1,4 @@
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using System.Reflection;
using UnityEditor;
using UnityEngine;

View File

@@ -1,4 +1,4 @@
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using UnityEditor;
using UnityEngine;

View File

@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using UnityEditor;
using UnityEngine;
using Object = UnityEngine.Object;

View File

@@ -1,4 +1,4 @@
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;

View File

@@ -2,7 +2,7 @@
"name": "Pacore.Editor",
"rootNamespace": "",
"references": [
"GUID:73bc4dcce6d82e44c8fe9738b987d694"
"GUID:92a828b1c98146b48b5a7061ab1e8d2e"
],
"includePlatforms": [],
"excludePlatforms": [],

View File

@@ -1,7 +1,7 @@
using UnityEngine.Scripting;
using System;
namespace PashaBibko.Pacore.Shared.Attributes
namespace PashaBibko.Pacore.Attributes
{
[Preserve, AttributeUsage(AttributeTargets.Class)]
public class CreateInstanceOnStartAttribute : Attribute { }

View File

@@ -2,7 +2,7 @@
using UnityEngine;
using System;
namespace PashaBibko.Pacore.Shared.Attributes
namespace PashaBibko.Pacore.Attributes
{
[MeansImplicitUse, AttributeUsage(validOn: AttributeTargets.Field)]
public sealed class DetectInspectorChangesAttribute : PropertyAttribute

View File

@@ -1,7 +1,7 @@
using JetBrains.Annotations;
using System;
namespace PashaBibko.Pacore.Shared.Attributes
namespace PashaBibko.Pacore.Attributes
{
[MeansImplicitUse, AttributeUsage(AttributeTargets.Method)]
public class InspectorCallableAttribute : Attribute

View File

@@ -2,7 +2,7 @@ using JetBrains.Annotations;
using UnityEngine;
using System;
namespace PashaBibko.Pacore.Shared.Attributes
namespace PashaBibko.Pacore.Attributes
{
#if UNITY_EDITOR
[MeansImplicitUse, AttributeUsage(validOn: AttributeTargets.Field)]

View File

@@ -1,7 +1,7 @@
using System;
using UnityEngine;
using UnityEngine;
using System;
namespace PashaBibko.Pacore.Shared.Attributes
namespace PashaBibko.Pacore.Attributes
{
[AttributeUsage(AttributeTargets.Field)]
public class MonoScriptAttribute : PropertyAttribute

View File

@@ -5,7 +5,7 @@ using System.Linq;
using System;
using UnityEngine;
namespace PashaBibko.Pacore.Runtime
namespace PashaBibko.Pacore
{
public static class ClassAttributeCache
{

View File

@@ -1,11 +1,11 @@
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using System.Collections.ObjectModel;
using UnityEngine;
using System;
using Object = UnityEngine.Object;
namespace PashaBibko.Pacore.Runtime
namespace PashaBibko.Pacore
{
public static class CreateInstanceOnStartLoader
{

View File

@@ -2,7 +2,7 @@
using System.Diagnostics;
using System;
namespace PashaBibko.Pacore.Shared.DevTools
namespace PashaBibko.Pacore.DevTools
{
public static class CodeProfiler
{

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: e8fb5ee44809416428d079d41246c55b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,3 +0,0 @@
{
"name": "Pacore.Shared"
}

View File

@@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 73bc4dcce6d82e44c8fe9738b987d694
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,4 +1,4 @@
using PashaBibko.Pacore.Shared.Attributes;
using PashaBibko.Pacore.Attributes;
using UnityEngine;
[CreateInstanceOnStart] public class TestMonoBehaviour : MonoBehaviour