如果扩展Editor可以让属性在Inspector视图中显示中文名称. 来看看官方有标签特性,能让你的字段头顶显示中文 你只需要在字段上添加特效即可 [Header("注释")]
[Space(20)]
public Vector3 test1; ==========================...
分类:
编程语言 时间:
2015-03-09 00:18:43
阅读次数:
1614
Merge Sorted Array问题:Given two sorted integer arrays A and B, merge B into A as one sorted array.Note:You may assume that A has enough space (size tha...
分类:
其他好文 时间:
2015-03-08 21:28:44
阅读次数:
122
??孙广东:2015-3-8/18:43 转载请注明出处:http://blog.csdn.net/u010019717更全的内容请看我的游戏蛮牛地址:http://www.unitymanual.com/space-uid-18602.html 在unity4.6之后多了个这个东东当然应该在UI中有应用了那么还有其他别的用处么?我们来看看官方蛮牛对UnityEvents的介绍:UnityEv...
分类:
编程语言 时间:
2015-03-08 18:51:48
阅读次数:
3631
Sort a linked list inO(nlogn) time using constant space complexity.findMiddle: 将listnode 不停的拆分sort: 将拆分好的不同的sortmerge: 将sort好的,向上merge/** * Definition...
分类:
其他好文 时间:
2015-03-08 07:50:33
阅读次数:
128
su rootyum install "@Chinese Support" // 安装中文输入法exit安装完毕,在“系统-->首选项”会看到“输入法”一栏。测试使用ctrl+space进行输入法切换,如果无效需要注销用户,再次登录系统即可。
分类:
其他好文 时间:
2015-03-07 21:17:51
阅读次数:
165
Follow up for "Unique Paths":Now consider if some obstacles are added to the grids. How many unique paths would there be?An obstacle and empty space i...
分类:
其他好文 时间:
2015-03-07 15:31:20
阅读次数:
161
转载请注明出处:http://blog.csdn.net/u010019717更全的内容请看我的游戏蛮牛地址:http://www.unitymanual.com/space-uid-18602.html "Universal Apps" Unity3D你须要两件东西:当前版本号的Unity(从 4...
分类:
移动开发 时间:
2015-03-07 13:48:04
阅读次数:
227
1. 题目 Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?2.解决方案class Solution {
public:
bool hasCycle(ListNode *head) {
if(!head){
...
分类:
其他好文 时间:
2015-03-06 15:51:34
阅读次数:
133
Determine whether an integer is a palindrome. Do this without extra space. click to show spoilers.
Some hints: Could negative integers be palindromes?...
分类:
其他好文 时间:
2015-03-06 14:14:56
阅读次数:
111
Given a stringsconsists of upper/lower-case alphabets and empty space characters' ', return the length of last word in the string.If the last word doe...
分类:
其他好文 时间:
2015-03-06 14:08:58
阅读次数:
109