Browse Source

- Forgot to set the PickingToy at defaults before last commit.

MelvMay-GG 12 years ago
parent
commit
3af94b7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      modules/PickingToy/1/main.cs

+ 2 - 2
modules/PickingToy/1/main.cs

@@ -23,7 +23,7 @@
 function PickingToy::create( %this )
 {
     // Configure the toy.
-    PickingToy.PickType = Ray;
+    PickingToy.PickType = Point;
     PickingToy.PickMode = Any;
     PickingToy.NotPickedAlpha = 0.2;
     PickingToy.PickAreaSize = 10;
@@ -31,7 +31,7 @@ function PickingToy::create( %this )
 
     // Add the configuration options.
     addSelectionOption( "Any,AABB,OOBB,Collision", "Pick Mode", 4, "setPickMode", false, "Selects the picking mode." );
-    addSelectionOption( "Ray,Point,Area", "Pick Type", 3, "setPickType", true, "Selects the picking type." );
+    addSelectionOption( "Point,Area,Ray", "Pick Type", 3, "setPickType", true, "Selects the picking type." );
 
     // Force-on debug options.
     setAABBOption( true );