This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | m e700 | |
| (>C.{60}) | |
| (\(.+\)).+\n | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Super simple pathfinding library | |
| class Node { | |
| constructor(userData=null) { | |
| this.connected = []; | |
| this.userData = userData; | |
| } | |
| connect(node, weight=1, oneWay=false) { | |
| this.connected.push({ node, weight }); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | license: gpl-3.0 | 
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Must install ImageMagick first | |
| http://www.imagemagick.org/script/index.php | |
| //This compresses a jpg with no visible loss of quality. Add in your own file names for target.jpg and result.jpg | |
| convert -strip -interlace Plane -sampling-factor 4:2:0 -quality 85% target.jpg result.jpg | |
| // This does the same as above but to an entire folder (will overwrite original files): | |
| mogrify -strip -interlace Plane -sampling-factor 4:2:0 -quality 85% *.jpg | |
| //This does the same thing but to all subfolders as well (Be careful with this one it will overwrite all original files) | 
- Create or find a gist that you own.
 - Clone your gist (replace 
<hash>with your gist's hash):# with ssh git clone [email protected]:<hash>.git mygist # with https
 
git clone https://gist.github.com/.git mygist
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | {"frames": [ | |
| { | |
| "filename": "robot_E_interactCenter_0", | |
| "frame": {"x":0,"y":0,"w":22,"h":25}, | |
| "rotated": false, | |
| "trimmed": false, | |
| "spriteSourceSize": {"x":0,"y":0,"w":22,"h":25}, | |
| "sourceSize": {"w":22,"h":25} | |
| }, | 
| File | Description | 
|---|---|
| bitmap_font_gimp.py | Generate .xml files to use custom Bitmap Fonts in Phaser 3. | 
| exported_ico_to_cur.py | Convert an .ico file generated by Gimp in .cur by setting x & y coordinates. | 
| gimp_minimal_room_data_json.py | Generate a .json file for my personal use. The decent one. | 
| mio_gimp_fu_polygon_points_to_json.py | Gimp plugin: Paths coordinates to text (sort of .json). For my personal use. | 
| [poly_mio_json_safe.py ](https://gist.github.com/Trissolo/13e597571f4d801b79c85f38dc1d2d31#file-poly_mio_jso | 
NewerOlder