Minor corrections to some component scripts to clear old references.

This commit is contained in:
Areloch 2016-05-17 23:57:30 -05:00
parent 6fe0b1789d
commit 36bb0b3c54
5 changed files with 0 additions and 40 deletions

View file

@ -22,8 +22,6 @@
function CameraComponent::onAdd(%this)
{
Parent::onBehaviorAdd(%this);
%this.addComponentField(clientOwner, "The client that views this camera", "int", "1", "");
%test = %this.clientOwner;

View file

@ -24,8 +24,6 @@
function ControlObjectComponent::onAdd(%this)
{
Parent::onBehaviorAdd(%this);
%this.addComponentField(clientOwner, "The shape to use for rendering", "int", "1", "");
%clientID = %this.getClientID();

View file

@ -24,8 +24,6 @@
function FPSControls::onAdd(%this)
{
Parent::onBehaviorAdd(%this);
//
%this.beginGroup("Keys");
%this.addComponentField(forwardKey, "Key to bind to vertical thrust", keybind, "keyboard w");