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 System.Collections.Generic; | |
using UnityEditor; | |
using System.Text.RegularExpressions; | |
using System.IO; | |
using System.Text; | |
public class ReimportUnityEngineUI | |
{ | |
[MenuItem( "Assets/Reimport UI Assemblies", false, 100 )] |
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
<?php | |
/** | |
* 替换内容源代码中的 Gist 标签为 Gist 脚本 | |
* Gist 标签格式为: [gist gist地址] | |
* | |
* @package GistEcho | |
* @author woody | |
* @version 1.0.0 | |
* @link http://www.fanrenxiu.com | |
*/ |
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
int total = 100; | |
int range = 10; | |
int player = 50; | |
void setup() { | |
size(640, 480); | |
frameRate(5); | |
} | |
void draw() { | |
background(200); |