Advertisement
ulfben

Example Conf-object

Apr 30th, 2013
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package com.ulfben.blajblaj
  2. {
  3.     import flash.display.MovieClip;
  4.     import com.ulfben.blajblaj.RightClickMenu;
  5.     import flash.filters.GlowFilter;
  6.     import flash.filters.BitmapFilterQuality;
  7.  
  8.     public class Conf {    
  9.         public static var _showExits:Boolean = true;
  10.         public static var _useAvatar:Boolean = false;      
  11.        
  12.         public static var _scrollTime:Number = 2;
  13.         public static var _mouseEdge:Number = 60;      
  14.         public static var _targetBuffer:Number = 20; //how close must we be to be considered "there"       
  15.         [...]
  16.         public static var _highlight:GlowFilter = new GlowFilter(0xFFFF00, 0.75, 10, 10, 2, BitmapFilterQuality.MEDIUM);
  17.         public static var _rightClickMenu:RightClickMenu = new RightClickMenu();
  18.        
  19.         public function Conf(){}
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement