- 博客(6)
- 收藏
- 关注
原创 sublime text2配置LUA
{ "cmd": ["lua", "$file"], "file_regex": "^(?:lua:)?[\t ](...*?):([0-9]*):?([0-9]*)", "selector": "source.lua" }
2016-11-26 18:17:50
201
原创 C#——迭代器
using System.Collections; using System.Collections.Generic; namespace Lesson_IEnumerator { class MyColor : IEnumerable { private readonly string[] colors = new string[] { "Red","Yello
2016-09-27 20:59:34
174
原创 编辑器扩展——模板
using UnityEngine; using System.Collections; using UnityEditor; using System.Text; using UnityEditor.ProjectWindowCallback; using System.IO; public class ExtensionScript { [MenuItem("Assets/Create/L
2016-09-27 18:44:54
233
原创 JavaScript基础(二)——数据类型
JavaScript数据类型 1.动态类型:相同的变量可用作不同的类型 var x; // x 为 undefined var x = 5; // 现在 x 为数字 var x = "John"; // 现在 x 为字符串 2.字符串:引号中的任意文本,可使用单引号或双引号 var name="xiaoxiong"; var wor
2016-09-27 10:33:28
309
原创 JavaScript基础
JavaScript显示数据 1.alert 菜鸟教程(runoob.com) 我的第一个页面 我的第一个段落。 window.alert(5 + 6); 2.innerHTML 菜鸟教程(runoob.com) 我的第一个 Web 页面 我的第一个段落。 document.getElementById("demo").inner
2016-09-27 10:17:50
170
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人