2026-06-20 뉴페어리
This commit is contained in:
14
Assets/MagicaCloth2/Scripts/Core/Interface/ICount.cs
Normal file
14
Assets/MagicaCloth2/Scripts/Core/Interface/ICount.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
// Magica Cloth 2.
|
||||
// Copyright (c) 2023 MagicaSoft.
|
||||
// https://magicasoft.jp
|
||||
|
||||
namespace MagicaCloth2
|
||||
{
|
||||
/// <summary>
|
||||
/// データカウントを返すインターフェース
|
||||
/// </summary>
|
||||
interface ICount
|
||||
{
|
||||
int Count();
|
||||
}
|
||||
}
|
||||
18
Assets/MagicaCloth2/Scripts/Core/Interface/ICount.cs.meta
Normal file
18
Assets/MagicaCloth2/Scripts/Core/Interface/ICount.cs.meta
Normal file
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8ec05c78959350f489fd922165a79ad1
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 242307
|
||||
packageName: Magica Cloth 2
|
||||
packageVersion: 2.18.1
|
||||
assetPath: Assets/MagicaCloth2/Scripts/Core/Interface/ICount.cs
|
||||
uploadId: 893596
|
||||
14
Assets/MagicaCloth2/Scripts/Core/Interface/IDataValidate.cs
Normal file
14
Assets/MagicaCloth2/Scripts/Core/Interface/IDataValidate.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
// Magica Cloth 2.
|
||||
// Copyright (c) 2023 MagicaSoft.
|
||||
// https://magicasoft.jp
|
||||
|
||||
namespace MagicaCloth2
|
||||
{
|
||||
/// <summary>
|
||||
/// 対象データの検証を行うインターフェース
|
||||
/// </summary>
|
||||
interface IDataValidate
|
||||
{
|
||||
void DataValidate();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2aed426981579da48863288c708602e1
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 242307
|
||||
packageName: Magica Cloth 2
|
||||
packageVersion: 2.18.1
|
||||
assetPath: Assets/MagicaCloth2/Scripts/Core/Interface/IDataValidate.cs
|
||||
uploadId: 893596
|
||||
25
Assets/MagicaCloth2/Scripts/Core/Interface/ITransform.cs
Normal file
25
Assets/MagicaCloth2/Scripts/Core/Interface/ITransform.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
// Magica Cloth 2.
|
||||
// Copyright (c) 2023 MagicaSoft.
|
||||
// https://magicasoft.jp
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace MagicaCloth2
|
||||
{
|
||||
interface ITransform
|
||||
{
|
||||
/// <summary>
|
||||
/// 利用しているすべてのトランスフォームをtransformSetに追加する
|
||||
/// </summary>
|
||||
/// <param name="transformSet"></param>
|
||||
void GetUsedTransform(HashSet<Transform> transformSet);
|
||||
|
||||
/// <summary>
|
||||
/// 利用しているトランスフォームを置換する
|
||||
/// key:置換対象トランスフォームのインスタンスID
|
||||
/// value:入れ替えるトランスフォーム
|
||||
/// </summary>
|
||||
/// <param name="replaceDict"></param>
|
||||
void ReplaceTransform(Dictionary<MagicaObjectId, Transform> replaceDict);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 858cfe74dc6869c45a9b36ce74ac38fd
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 242307
|
||||
packageName: Magica Cloth 2
|
||||
packageVersion: 2.18.1
|
||||
assetPath: Assets/MagicaCloth2/Scripts/Core/Interface/ITransform.cs
|
||||
uploadId: 893596
|
||||
14
Assets/MagicaCloth2/Scripts/Core/Interface/IValid.cs
Normal file
14
Assets/MagicaCloth2/Scripts/Core/Interface/IValid.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
// Magica Cloth 2.
|
||||
// Copyright (c) 2023 MagicaSoft.
|
||||
// https://magicasoft.jp
|
||||
|
||||
namespace MagicaCloth2
|
||||
{
|
||||
/// <summary>
|
||||
/// 対象の有効性を返すインターフェース
|
||||
/// </summary>
|
||||
interface IValid
|
||||
{
|
||||
bool IsValid();
|
||||
}
|
||||
}
|
||||
18
Assets/MagicaCloth2/Scripts/Core/Interface/IValid.cs.meta
Normal file
18
Assets/MagicaCloth2/Scripts/Core/Interface/IValid.cs.meta
Normal file
@@ -0,0 +1,18 @@
|
||||
fileFormatVersion: 2
|
||||
guid: eb1ee379472ac3645b05adb8c510f7d5
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
AssetOrigin:
|
||||
serializedVersion: 1
|
||||
productId: 242307
|
||||
packageName: Magica Cloth 2
|
||||
packageVersion: 2.18.1
|
||||
assetPath: Assets/MagicaCloth2/Scripts/Core/Interface/IValid.cs
|
||||
uploadId: 893596
|
||||
Reference in New Issue
Block a user