新增骨骼动画播放后mesh碰撞的重新生成
This commit is contained in:
parent
e8705deffd
commit
926a06f504
@ -213,6 +213,12 @@ public class ActionHelper
|
|||||||
{
|
{
|
||||||
return StrEventAction.Allocate(act.Name, act.Value);
|
return StrEventAction.Allocate(act.Name, act.Value);
|
||||||
}
|
}
|
||||||
|
case "SkinnedBake":
|
||||||
|
{
|
||||||
|
var dictAction = (XMLTool.DictionaryAction)act;
|
||||||
|
return SkinnedBakeAction.Allocate(act.Value, dictAction.args);
|
||||||
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
Debug.LogError($"没有找到此Action的类型{act.Type}");
|
Debug.LogError($"没有找到此Action的类型{act.Type}");
|
||||||
break;
|
break;
|
||||||
|
|||||||
81
Assets/Scripts/Actions/SkinnedBakeAction.cs
Normal file
81
Assets/Scripts/Actions/SkinnedBakeAction.cs
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
using QFramework;
|
||||||
|
using System;
|
||||||
|
using QFramework.Example;
|
||||||
|
using DG.Tweening;
|
||||||
|
using System.ComponentModel.Design;
|
||||||
|
public class SkinnedBakeAction : IAction
|
||||||
|
{
|
||||||
|
public ulong ActionID { get; set; }
|
||||||
|
public bool Deinited { get; set; }
|
||||||
|
public bool Paused { get; set; }
|
||||||
|
public ActionStatus Status { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
private static readonly SimpleObjectPool<SkinnedBakeAction> mPool =
|
||||||
|
new SimpleObjectPool<SkinnedBakeAction>(() => new SkinnedBakeAction(), null, 10);
|
||||||
|
string path;
|
||||||
|
string deviceName;
|
||||||
|
public static SkinnedBakeAction Allocate(string path, Dictionary<string, string> datas, System.Action onDelayFinish = null)
|
||||||
|
{
|
||||||
|
var retNode = mPool.Allocate();
|
||||||
|
retNode.ActionID = ActionKit.ID_GENERATOR++;
|
||||||
|
retNode.Deinited = false;
|
||||||
|
retNode.Reset();
|
||||||
|
retNode.path = path;
|
||||||
|
retNode.deviceName = datas.ContainsKey("deviceName") ? datas["deviceName"] : string.Empty;
|
||||||
|
return retNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public void Deinit()
|
||||||
|
{
|
||||||
|
if (!Deinited)
|
||||||
|
{
|
||||||
|
Deinited = true;
|
||||||
|
mPool.Recycle(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OnExecute(float dt)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OnFinish()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public void OnStart()
|
||||||
|
{
|
||||||
|
GameObject obj = null;
|
||||||
|
if (string.IsNullOrEmpty(deviceName) == false)
|
||||||
|
{
|
||||||
|
obj = DeviceController.Instance.GetDeviceObj(deviceName);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
obj = Utility.FindObj(path);
|
||||||
|
}
|
||||||
|
if (obj == null)
|
||||||
|
{
|
||||||
|
Debug.LogError("ûÓÐÕÒµ½ÎïÌå :" + path);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Mesh mesh = new Mesh();
|
||||||
|
obj.GetComponent<SkinnedMeshRenderer>().BakeMesh(mesh);
|
||||||
|
obj.GetComponent<MeshCollider>().sharedMesh = mesh;
|
||||||
|
}
|
||||||
|
this.Finish();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Reset()
|
||||||
|
{
|
||||||
|
Status = ActionStatus.NotStart;
|
||||||
|
Paused = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
11
Assets/Scripts/Actions/SkinnedBakeAction.cs.meta
Normal file
11
Assets/Scripts/Actions/SkinnedBakeAction.cs.meta
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 71a414df74a04624792f2a9e050ea506
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -1009,6 +1009,17 @@ namespace XMLTool
|
|||||||
newAction = act;
|
newAction = act;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case "SkinnedBake":
|
||||||
|
{
|
||||||
|
var act = new DictionaryAction();
|
||||||
|
XAttribute deviceName = action.Attribute("deviceName");
|
||||||
|
if (deviceName != null)
|
||||||
|
{
|
||||||
|
act.args.Add("deviceName", deviceName.Value);
|
||||||
|
}
|
||||||
|
newAction = act;
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
newAction = new Action();
|
newAction = new Action();
|
||||||
break;
|
break;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user