- Preferences
- Maximize on startup (checkbox)
- Undo limit (per level) (textfield)
- Open level limit (textfield)
- Clear Project History (button)
01010111 built the Wobolob app as a ad-supported app. This SERVICE is provided by 01010111 at no cost and is intended for use as is.
This page is used to inform website visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.
If you choose to use my Service, then you agree to the collection and use of information in relation with this policy. The Personal Information that I collect are used for providing and improving the Service. I will not use or share your information with anyone except as described
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
| package; | |
| import flixel.FlxG; | |
| import flixel.FlxObject; | |
| import flixel.FlxSprite; | |
| import flixel.FlxState; | |
| import flixel.system.FlxAssets; | |
| import flixel.tile.FlxTilemap; | |
| import flixel.tile.FlxBaseTilemap.FlxTilemapAutoTiling; |
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
| import flixel.FlxG; | |
| import flixel.FlxSprite; | |
| import flixel.group.FlxGroup.FlxTypedGroup; | |
| import flixel.math.FlxPoint; | |
| using zero.ext.FloatExt; | |
| class ThreeDeeObject extends FlxTypedGroup<Slice> | |
| { |
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
| function onOpen() { create_menu(); } | |
| function create_menu() { SpreadsheetApp.getActiveSpreadsheet().addMenu("Export CSV", [{name: "Export this sheet as CSV", functionName: "export_csv"}]); } | |
| function export_csv() { display_text(make_csv()); } | |
| function make_csv() | |
| { | |
| var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); | |
| var data = sheet.getSheetValues(1, 1, sheet.getMaxRows(), sheet.getMaxColumns()) | |
| var text = ''; | |
| for (var j = 0; j < data.length; j++) |
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
| package ; | |
| import flixel.FlxState; | |
| import flixel.tweens.FlxTween; | |
| import openfl.system.System; | |
| import openfl.display.BitmapData; | |
| import openfl.filters.ColorMatrixFilter; | |
| import flixel.FlxG; | |
| import openfl.geom.Point; | |
| /** |
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
| package; | |
| import flixel.FlxG; | |
| import flixel.FlxState; | |
| import flixel.text.FlxText; | |
| import flixel.text.FlxText.FlxTextAlign; | |
| class MenuState extends FlxState | |
| { | |
| var centeredText:FlxText; |
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
| package; | |
| import flixel.math.FlxPoint; | |
| /** | |
| * Various useful math utilities for use with HaxeFlixel. | |
| * See notes in methods for more detailed information. | |
| * @author x01010111 | |
| */ |
NewerOlder