91e6b23d3f
NMAKE-VS2012 Error LNK2011 while NMAKE-VS2010 does not complain we need to link the pch.obj file see http://msdn.microsoft.com/en-us/library/3ay26wa2(v=vs.110).aspx ** PCH Support for Ninja Ninja need to add property OBJECT_DEPENDS for using PCH OBJECT_OUTPUTS for create PCH see http://public.kitware.com/pipermail/cmake-developers/2012-March/003653.html
34 lines
731 B
Lua
34 lines
731 B
Lua
|
|
r2.BasicBricks = {}
|
|
|
|
r2.BasicBricks["RtScenario"] = { acts = {} }
|
|
|
|
r2.BasicBricks["RtAct"] =
|
|
{
|
|
id="", npc_grps={}, fauna_grps={}, ai_states={}, npcs={}
|
|
}
|
|
|
|
r2.BasicBricks["RtNpcGrp"] =
|
|
{
|
|
id="", Name="", children={},
|
|
autospawn=1, bot_chat_parameters="", bot_equipment="",
|
|
bot_sheet_client="", bot_vertical_pos="auto",
|
|
count = 0, grp_keywords =""
|
|
}
|
|
|
|
r2.BasicBricks["RtNpc"]=
|
|
{
|
|
id="", Name="",
|
|
chat_parameters="", equipment="", is_stuck=0,
|
|
keywords="", sheet_client="", bot_vertical_pos="auto",
|
|
angle=0, pt = {x=0,y=0,z=0}
|
|
}
|
|
|
|
r2.BasicBricks["RtAiState"]=
|
|
{
|
|
id="", Name="", children={},
|
|
ai_activity="no_change", ai_movement="stand_on_start_point",
|
|
ai_profile_params = 0, keywords="", vertical_pos="auto",
|
|
pt = {}
|
|
}
|
|
|