后处理+FEEL完全改进

This commit is contained in:
SoulliesOfficial
2025-12-22 18:36:29 -05:00
parent c3914da4ac
commit a2052bfe16
1427 changed files with 193092 additions and 374110 deletions

View File

@@ -43,11 +43,12 @@ namespace Cielonos.MainGame.Inventory
"NormalBlock", "PerfectBlock", defaultBlockTime, perfectTime);
}
public GameObject InstantiateBlockEffect(string effectName, Vector3 position, Quaternion rotation)
public GameObject InstantiateBlockEffect(string effectName, CharacterBase creator, Vector3 position, Quaternion rotation)
{
if (blockEffects.TryGetValue(effectName, out GameObject effect))
{
return LeanPool.Spawn(effect, position, rotation);
GameObject obj = VFXObject.Spawn(effect, creator, position, rotation);
return obj;
}
return null;