Added script for Friend of the Ninja mission (#406)

* Added script for Friend of the Ninja mission

* Added comments
This commit is contained in:
David Markowitz
2022-02-05 04:00:10 -08:00
committed by GitHub
parent 6ba9eea993
commit 828c457614
3 changed files with 54 additions and 0 deletions

View File

@@ -145,6 +145,7 @@
#include "ImgBrickConsoleQB.h"
#include "ActParadoxPipeFix.h"
#include "FvNinjaGuard.h"
#include "FvPassThroughWall.h"
#include "FvBounceOverWall.h"
// FB Scripts
@@ -557,6 +558,8 @@ CppScripts::Script* CppScripts::GetScript(Entity* parent, const std::string& scr
script = new ActParadoxPipeFix();
else if (scriptName == "scripts\\ai\\FV\\L_FV_NINJA_GUARDS.lua")
script = new FvNinjaGuard();
else if (scriptName == "scripts\\ai\\FV\\L_ACT_PASS_THROUGH_WALL.lua")
script = new FvPassThroughWall();
else if (scriptName == "scripts\\ai\\FV\\L_ACT_BOUNCE_OVER_WALL.lua")
script = new FvBounceOverWall();