Skip to content
Snippets Groups Projects
  1. Feb 09, 2018
  2. Feb 08, 2018
  3. Feb 07, 2018
  4. Feb 06, 2018
    • nightfox's avatar
      Reverting SlyEdit back to version 1.54, since there seem to still be problems... · a63104b0
      nightfox authored
      Reverting SlyEdit back to version 1.54, since there seem to still be problems with the new versions that allow text color selection.
      a63104b0
    • deuce's avatar
      Put doorway_mode into the prototype... this allows a lot of flexability... · 450184f4
      deuce authored
      1) You can set the objects doorway_mode via the constructor or the property...
         var g = new Graphic(undefined,undefined,undefined,undefined, true );
         g.doorway_mode = false;
         If you do this, it will always be whatever you set it to.
      
      2) You can use "the default" by not specifying the mode...
         var g = new Graphic();
      
      3) You can change what "the default" is by modifying the prototype:
         g.prototype.doorway_mode = true;
      
      When you do #3, *all* instances of the class that use "the default" will
      use the new value.  So if you have a bunch of Graphic objects, and switch
      to doorway mode, you can now change them all to output in doorway mode
      with a single assignment.
      
      Whee!
      450184f4
    • deuce's avatar
      e6bbfa6e
Loading