diff options
| author | chai <215380520@qq.com> | 2024-05-19 17:03:57 +0800 |
|---|---|---|
| committer | chai <215380520@qq.com> | 2024-05-19 17:03:57 +0800 |
| commit | cf58771365b5953c6eac548b172aae880d1f0acd (patch) | |
| tree | a49757a4b5c447cbf877584d482367a6bfe33b10 /Thronefall_1_57/Decompile/NGS.MeshFusionPro/DynamicCombineSource.cs | |
| parent | eed315deae356ddfb17f28305e7cde6cdfc43313 (diff) | |
* rename
Diffstat (limited to 'Thronefall_1_57/Decompile/NGS.MeshFusionPro/DynamicCombineSource.cs')
| -rw-r--r-- | Thronefall_1_57/Decompile/NGS.MeshFusionPro/DynamicCombineSource.cs | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/Thronefall_1_57/Decompile/NGS.MeshFusionPro/DynamicCombineSource.cs b/Thronefall_1_57/Decompile/NGS.MeshFusionPro/DynamicCombineSource.cs deleted file mode 100644 index dcbf244..0000000 --- a/Thronefall_1_57/Decompile/NGS.MeshFusionPro/DynamicCombineSource.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System; -using UnityEngine; - -namespace NGS.MeshFusionPro; - -public class DynamicCombineSource : ICombineSource<DynamicCombinedObject, DynamicCombinedObjectPart>, ICombineSource -{ - private CombineSource _base; - - public CombineSource Base => _base; - - public Vector3 Position => _base.Position; - - public Bounds Bounds => _base.Bounds; - - public event Action<ICombinedObject, ICombinedObjectPart> onCombined; - - public event Action<ICombinedObject, string> onCombineError; - - public event Action<ICombinedObject> onCombineFailed; - - public event Action<DynamicCombinedObject, DynamicCombinedObjectPart> onCombinedTyped; - - public event Action<DynamicCombinedObject, string> onCombineErrorTyped; - - public event Action<DynamicCombinedObject> onCombineFailedTyped; - - public DynamicCombineSource(GameObject go, int submeshIndex = 0) - { - _base = new CombineSource(go, submeshIndex); - } - - public DynamicCombineSource(Mesh mesh, MeshRenderer renderer, int submeshIndex = 0) - { - _base = new CombineSource(mesh, renderer, submeshIndex); - } - - public DynamicCombineSource(MeshCombineInfo info, RendererSettings settings) - { - _base = new CombineSource(info, settings); - } - - public DynamicCombineSource(MeshCombineInfo info, RendererSettings settings, Bounds bounds) - { - _base = new CombineSource(info, settings, bounds); - } - - public void Combined(DynamicCombinedObject root, DynamicCombinedObjectPart part) - { - this.onCombined?.Invoke(root, part); - this.onCombinedTyped?.Invoke(root, part); - } - - public void CombineError(DynamicCombinedObject root, string errorMessage) - { - if (this.onCombineError == null && this.onCombineErrorTyped == null) - { - Debug.Log("Error during combine " + root.name + ", reason :" + errorMessage); - return; - } - this.onCombineError?.Invoke(root, errorMessage); - this.onCombineErrorTyped?.Invoke(root, errorMessage); - } - - public void CombineFailed(DynamicCombinedObject root) - { - this.onCombineFailed?.Invoke(root); - this.onCombineFailedTyped?.Invoke(root); - } -} |
