savya #2

Merged
savya merged 6 commits from savya into main 2026-05-27 15:41:46 +02:00
14 changed files with 68 additions and 67 deletions
Showing only changes of commit 14bffd1492 - Show all commits

View File

@@ -1,9 +0,0 @@
using UnityEngine;
namespace Darkmatter.Core.Contracts.Features.Paper
{
public interface IArtInputBridge
{
bool TryScreenToArtWorld(Vector2 screenPos, out Vector2 artWorldPos);
}
}

View File

@@ -1,2 +0,0 @@
fileFormatVersion: 2
guid: 39f0c8bfbf53c4b299d6beb0a01fd32b

View File

@@ -1,10 +0,0 @@
using UnityEngine;
namespace Darkmatter.Core.Contracts.Features.Paper
{
public interface IPaperRig
{
Camera ArtCamera { get; }
RectTransform DisplayRect { get; }
}
}

View File

@@ -1,2 +0,0 @@
fileFormatVersion: 2
guid: a51496fa9463b41f7baeb4ff40055835

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 1f91f821f605f4d1ba438f41e4232df0
guid: 4be5b3e61465b42a597ff023501b4d87
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -0,0 +1,19 @@
{
"name": "Features.Colorbook",
"rootNamespace": "Darkmatter.Features.Colorbook",
"references": [
"GUID:6a0a834eb41764f12ba55c3fb04a40cb",
"GUID:c1c03c0e5b2f4412b9f2be1c20d6a9b1",
"GUID:b0214a6008ed146ff8f122a6a9c2f6cc",
"GUID:f51ebe6a0ceec4240a699833d6309b23"
],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}

View File

@@ -1,8 +1,7 @@
fileFormatVersion: 2
guid: 00ba58b6f31d046c1849805f2cb9a57d
NativeFormatImporter:
guid: ce866130b4c60406994fd723c6f571d9
AssemblyDefinitionImporter:
externalObjects: {}
mainObjectFileID: 8400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 68afb1ec24cda44d6a6a57436462a65c
guid: 1fc9de3024c914935af320d954bfe829
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -0,0 +1,16 @@
using Darkmatter.Features.Colorbook.System;
using Darkmatter.Libs.Installers;
using UnityEngine;
using VContainer;
using VContainer.Unity;
namespace Darkmatter.Features.Colorbook.Installers
{
public class ColorbookFlowFeatureModule : MonoBehaviour, IModule
{
public void Register(IContainerBuilder builder)
{
builder.RegisterEntryPoint<ColorbookFlowController>(Lifetime.Singleton);
}
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: f7c0cf8383e144b9096adb577b377263

View File

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

View File

@@ -0,0 +1,16 @@
using System.Threading;
using Cysharp.Threading.Tasks;
using Darkmatter.Core.Contracts.Features.DrawingCatalog;
using VContainer.Unity;
namespace Darkmatter.Features.Colorbook.System;
public class ColorbookFlowController : IAsyncStartable
{
private readonly IDrawingCatalogController _drawingCatalog;
public async UniTask StartAsync(CancellationToken cancellation = new CancellationToken())
{
await _drawingCatalog.InitializeAsync(cancellation);
}
}

View File

@@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: 46c37747ebcd4d0aa9ff3bf9fe9e26fd
timeCreated: 1779888455

View File

@@ -1,39 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!84 &8400000
RenderTexture:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ArtCameraTexture
m_ImageContentsHash:
serializedVersion: 2
Hash: 00000000000000000000000000000000
m_IsAlphaChannelOptional: 0
serializedVersion: 6
m_Width: 1920
m_Height: 1080
m_AntiAliasing: 1
m_MipCount: -1
m_DepthStencilFormat: 94
m_ColorFormat: 8
m_MipMap: 0
m_GenerateMips: 1
m_SRGB: 0
m_UseDynamicScale: 0
m_UseDynamicScaleExplicit: 0
m_BindMS: 0
m_EnableCompatibleFormat: 1
m_EnableRandomWrite: 0
m_TextureSettings:
serializedVersion: 2
m_FilterMode: 1
m_Aniso: 0
m_MipBias: 0
m_WrapU: 1
m_WrapV: 1
m_WrapW: 1
m_Dimension: 2
m_VolumeDepth: 1
m_ShadowSamplingMode: 2