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
| /* custom bootstrap grid by Hugh Anderson */ | |
| .col-xs-110 { width: calc(100% / 10) } /* 1/10 */ | |
| .col-xs-18 { width: calc(100% / 8) } /* 1/8 */ | |
| .col-xs-15 { width: calc(100% / 5) } /* 1/5 */ | |
| .col-xs-38 { width: calc(300% / 8) } /* 3/8 */ | |
| .col-xs-310 { width: calc(300% / 10) } /* 3/10 */ | |
| .col-xs-25 { width: calc(200% / 5) } /* 2/5 */ | |
| .col-xs-35 { width: calc(300% / 5) } /* 3/5 */ | |
| .col-xs-58 { width: calc(500% / 8) } /* 5/8 */ |
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
| using UnityEditor; | |
| using UnityEngine; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Text.RegularExpressions; | |
| // Object rendering code based on Dave Carlile's "Create a GameObject Image Using Render Textures" post | |
| // Link: http://crappycoding.com/2014/12/create-gameobject-image-using-render-textures/ |
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 flash.events.Event; | |
| this.addEventListener(Event.ENTER_FRAME, _oef ); | |
| var f:Number = 0; | |
| function _oef(e:Event):void { | |
| if(this.loaderInfo.parameters.call) | |
| { | |
| f = Number(this.loaderInfo.parameters.fm); | |
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 async | |
| { | |
| public class Deferred implements Promise | |
| { | |
| private const pending:Array = []; | |
| private var processed:Boolean; | |
| private var completed:Boolean; |
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
| <!DOCTYPE html> | |
| <meta charset=utf-8> | |
| <meta name=viewport content="width=device-width, initial-scale=1, maximum-scale=1"> | |
| <meta name=apple-mobile-web-app-capable content=yes> | |
| <meta name=apple-mobile-web-app-status-bar-style content=black> | |
| <title>Test fullscreen</title> | |
| <style> | |
| html, body { | |
| margin: 0; | |
| padding: 0; |