-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfunction2.lua
More file actions
23 lines (20 loc) · 939 Bytes
/
function2.lua
File metadata and controls
23 lines (20 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--[[
Title: menu item 2 handler
Author(s): LiXizhi
Date: 2006/7/15
Desc: reserved for debugging
Use Lib:
-------------------------------------------------------
NPL.activate("(gl)script/function2.lua");
-------------------------------------------------------
]]
local function activate(intensity)
-- Do anything u want, here
--NPL.activate("D:/lxzsrc/ParaEngine/ParaEngine plugins/samples/HelloWorld/Debug/HelloWorld.dll","1");
--NPL.activate("D:/lxzsrc/ParaEngine/ParaEngine plugins/samples/HelloWorldMFC/Debug/HelloWorldMFC.dll", "1");
--NPL.activate("D:/lxzsrc/ParaEngine/ParaEngine plugins/samples/HelloworldManaged/Debug/HelloworldManaged.dll", "1");
NPL.activate("ParaAllInOne.dll");
--NPL.activate("D:/lxzsrc/ParaEngine/ParaEngine plugins/samples/HelloWorldMFC/Release/HelloWorldMFC.dll", "1");
--NPL.activate("D:/lxzsrc/ParaEngine/ParaEngine plugins/samples/HelloWorld/Release/HelloWorld.dll");
end
NPL.this(activate);