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.
37 lines
814 B
C#
37 lines
814 B
C#
namespace Wizard;
|
|
|
|
public class TutorialUpdateTask : BaseTask
|
|
{
|
|
public class TutorialUpdateTaskParam : BaseParam
|
|
{
|
|
public int tutorial_step;
|
|
|
|
public int is_skip;
|
|
}
|
|
|
|
public TutorialUpdateTask()
|
|
{
|
|
base.type = ApiType.Type.TutorialUpdate;
|
|
}
|
|
|
|
public void SetParameter(int tutorial_step, bool isSkip)
|
|
{
|
|
TutorialUpdateTaskParam tutorialUpdateTaskParam = new TutorialUpdateTaskParam();
|
|
tutorialUpdateTaskParam.tutorial_step = tutorial_step;
|
|
tutorialUpdateTaskParam.is_skip = (isSkip ? 1 : 0);
|
|
base.Params = tutorialUpdateTaskParam;
|
|
}
|
|
|
|
protected override int Parse()
|
|
{
|
|
int num = base.Parse();
|
|
if (num != 1)
|
|
{
|
|
return num;
|
|
}
|
|
Data.UserTutorial = new UserTutorial();
|
|
Data.Load.data._userTutorial.Update(base.ResponseData["data"]);
|
|
return num;
|
|
}
|
|
}
|