feat(battle-engine): EffectType full enum + collection/card/vfx extension copies
Replaces partial EffectMgr.EffectType with all 226 decomp values; copies the IsNotNullOrEmpty/EquelsID/FindFromCardId/GetAllFuncVfxResults extension files + UI extensions; adds Renderer/MeshFilter shared-material/mesh/sortingOrder. Compile loop then closed the revealed deps (3242 files). 9.1k -> 18 errors.
This commit is contained in:
26
SVSim.BattleEngine/Engine/SetDataTranslateTask.cs
Normal file
26
SVSim.BattleEngine/Engine/SetDataTranslateTask.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using Cute;
|
||||
using Wizard;
|
||||
|
||||
public class SetDataTranslateTask : NetworkTask
|
||||
{
|
||||
public class SetDataTranslateTaskParam : BaseParam
|
||||
{
|
||||
public string email_address;
|
||||
}
|
||||
|
||||
public override string Url => NtDataTranslateManager.GetInstance().GetSetTranslateInfoUrl();
|
||||
|
||||
public void SetParameter(string address)
|
||||
{
|
||||
SetDataTranslateTaskParam setDataTranslateTaskParam = new SetDataTranslateTaskParam();
|
||||
setDataTranslateTaskParam.email_address = address;
|
||||
base.Params = setDataTranslateTaskParam;
|
||||
}
|
||||
|
||||
protected override int Parse()
|
||||
{
|
||||
int result = base.Parse();
|
||||
_ = 1;
|
||||
return result;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user