CBaseEntity: add SetParent and ClearParent Inputs for level designers.
This commit is contained in:
parent
726332c78e
commit
3d7e132699
2 changed files with 21 additions and 1 deletions
|
@ -95,6 +95,9 @@ class CBaseEntity
|
||||||
virtual void(void) Pain;
|
virtual void(void) Pain;
|
||||||
virtual void(void) Death;
|
virtual void(void) Death;
|
||||||
nonvirtual void(void) SpawnInit;
|
nonvirtual void(void) SpawnInit;
|
||||||
|
|
||||||
|
nonvirtual void(string) SetParent;
|
||||||
|
nonvirtual void(void) ClearParent;
|
||||||
nonvirtual void(void) ParentUpdate;
|
nonvirtual void(void) ParentUpdate;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -622,6 +622,12 @@ CBaseEntity::Input(entity eAct, string strInput, string strData)
|
||||||
case "Extinguish":
|
case "Extinguish":
|
||||||
Extinguish();
|
Extinguish();
|
||||||
break;
|
break;
|
||||||
|
case "SetParent":
|
||||||
|
SetParent(strData);
|
||||||
|
break;
|
||||||
|
case "Extinguish":
|
||||||
|
ClearParent();
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
if (strData != "")
|
if (strData != "")
|
||||||
print(sprintf("^2%s::^3Input^7: Receives input %s from %s with data %s\n",
|
print(sprintf("^2%s::^3Input^7: Receives input %s from %s with data %s\n",
|
||||||
|
@ -852,6 +858,17 @@ CBaseEntity::ParentUpdate(void)
|
||||||
SetOrigin(p.origin);
|
SetOrigin(p.origin);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
void
|
||||||
|
CBaseEntity::SetParent(string name)
|
||||||
|
{
|
||||||
|
m_parent = name;
|
||||||
|
}
|
||||||
|
void
|
||||||
|
CBaseEntity::ClearParent(void)
|
||||||
|
{
|
||||||
|
m_parent = __NULL__;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
CBaseEntity::SpawnInit(void)
|
CBaseEntity::SpawnInit(void)
|
||||||
|
@ -1251,7 +1268,7 @@ CBaseEntity::SpawnKey(string strKey, string strValue)
|
||||||
health = stof(strValue);
|
health = stof(strValue);
|
||||||
break;
|
break;
|
||||||
case "parentname":
|
case "parentname":
|
||||||
m_parent = strValue;
|
SetParent(strValue);
|
||||||
break;
|
break;
|
||||||
case "ignorepvs":
|
case "ignorepvs":
|
||||||
pvsflags = PVSF_IGNOREPVS;
|
pvsflags = PVSF_IGNOREPVS;
|
||||||
|
|
Loading…
Reference in a new issue