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 MIT | |
| // Author: Jorge Avila <jorge.e.avila@gmail.com> | |
| // Example: | |
| // body | |
| // -rem('margin', 10 20 30 40) | |
| // -rem('font-size', 10) | |
| basefont = 16px | |
| -rem(property, sizes) | |
| rems = () |
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 UnityEngine; | |
| using UnityEditor; | |
| using Rotorz.Tile; | |
| using Rotorz.Tile.Editor; | |
| [InitializeOnLoad] | |
| public class AttachSurfacePrefabsOnly : IObjectFactory { | |
| static AttachSurfacePrefabsOnly() { |
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 'dart:collection'; | |
| import 'poolable.dart'; | |
| class TestObject extends Poolable { | |
| static TestObject creator() { | |
| return new TestObject(); | |
| } | |
| } |