Jelajahi Sumber

Merge pull request #1176 from Azaezel/alpha41/spawnStuffs

ObjectBuilderGui augs
Brian Roberts 1 tahun lalu
induk
melakukan
33b7cc7803

+ 43 - 0
Templates/BaseGame/game/tools/worldEditor/gui/objectBuilderGui.ed.gui

@@ -969,6 +969,10 @@ function ObjectBuilderGui::processNewObject(%this, %obj)
    if ( !isObject( %obj ) )
    if ( !isObject( %obj ) )
       return;
       return;
       
       
+   %controlMask = $TypeMasks::PlayerObjectType | $TypeMasks::VehicleObjectType;
+   if (%obj.control)
+    localClientConnection.setControlobject(%obj);
+    
    // Add the object to the group.
    // Add the object to the group.
    if( %this.objectGroup !$= "" )
    if( %this.objectGroup !$= "" )
       %this.objectGroup.add( %obj );
       %this.objectGroup.add( %obj );
@@ -1459,6 +1463,45 @@ function ObjectBuilderGui::buildPlayerDropPoint(%this)
    %this.process();
    %this.process();
 }
 }
 
 
+function ObjectBuilderGui::buildPlayer(%this)
+{
+   %this.objectClassName = "Player";
+   %this.addField("dataBlock",    "TypeDataBlock", "dataBlock",   "PlayerData");
+   %this.addField("control", "TypeBool", "control?", "false");
+   %this.process();
+}
+
+function ObjectBuilderGui::buildAIPlayer(%this)
+{
+   %this.objectClassName = "AIPlayer";
+   %this.addField("dataBlock",    "TypeDataBlock", "dataBlock",   "PlayerData");
+   %this.process();
+}
+
+function ObjectBuilderGui::buildWheeledVehicle(%this)
+{
+   %this.objectClassName = "Player";
+   %this.addField("dataBlock",    "TypeDataBlock", "dataBlock",   "WheeledVehicleData");
+   %this.addField("control", "TypeBool", "control?", "false");
+   %this.process();
+}
+
+function ObjectBuilderGui::buildHoverVehicle(%this)
+{
+   %this.objectClassName = "Player";
+   %this.addField("dataBlock",    "TypeDataBlock", "dataBlock",   "HoverVehicleData");
+   %this.addField("control", "TypeBool", "control?", "false");
+   %this.process();
+}
+
+function ObjectBuilderGui::buildFlyingVehicle(%this)
+{
+   %this.objectClassName = "Player";
+   %this.addField("dataBlock",    "TypeDataBlock", "dataBlock",   "FlyingVehicleData");
+   %this.addField("control", "TypeBool", "control?", "false");
+   %this.process();
+}
+
 function ObjectBuilderGui::buildObserverDropPoint(%this)
 function ObjectBuilderGui::buildObserverDropPoint(%this)
 {
 {
    %this.objectClassName = "SpawnSphere";
    %this.objectClassName = "SpawnSphere";