码迷,mamicode.com
首页 >  
搜索关键字:a simple game    ( 11903个结果
Awake & Start
【Awake & Start】MonoBehaviour.Awake() Awake is used to initialize any variables or game state before the game starts. Awake is called only once during....
分类:其他好文   时间:2014-06-26 00:37:37    阅读次数:293
Application.LoadLevel & Object.DontDestroyOnLoad
【Application.LoadLevel】 只有在File->Build Setting中设置了的按钮才能被加载。 当level加载完成后,MonoBehaviour.OnLevelWasLoaded is called on all active game objects。 When...
分类:移动开发   时间:2014-06-25 19:43:36    阅读次数:254
Introdution to 3D Game Programming With DirectX11 第11章 习题解答
11.1这道题要注意使用了line strip,由于曾经一直用triangle list,所以在几何渲染的时候easy算错定点描绘的顺序。贴一些代码,大概就能把这个问题解释清楚了,由于框架还不是特别熟,所以是在原有样例的基础上建立的自己的代码void TreeBillboardApp::BuildC...
分类:其他好文   时间:2014-06-25 17:11:30    阅读次数:462
sas数组
ARRAY array-name { subscript } ;*字符型数组输出;data a; array simple{3}$ red green yellow ("r" "g" "b"); put red=; put simple(1)=;run;...
分类:其他好文   时间:2014-06-25 15:11:35    阅读次数:881
UISprite
【UISprite】 UISprite用于引用一个UIAtlas中的sprite。 此脚本最强大的功能是Sprite Type,主要指定在需拉伸图片时的行为,它有以下几种值: 1)Simple:普通拉伸。 2)Sliced:九宫格拉伸,各边固定宽度通过Edit在UIAtlas中来...
分类:其他好文   时间:2014-06-25 14:38:07    阅读次数:229
uva 10843 - Anne's game(数论cayley定理)
题目链接:uva 10843 - Anne's game 题目大意:给出n,问说有n个节点构成的标号树有多少种。 解题思路:cayley定理的躶题。 #include #include typedef long long ll; const ll MOD = 2000000011; ll Pow (ll x, ll n) { if (n 0) ret...
分类:其他好文   时间:2014-06-24 23:46:31    阅读次数:239
windows及linux下安装django simple captcha 遇到的各种问题及解决办法
转载自http://www.cnblogs.com/descusr/p/3225874.html 所有程序写完之后,验证码图片不显示,点击图片地址会提示如下错误,并且在linux下的纠正办法 用pil产生验证码出现:ImportError: The _imagingft C module is not installed 这个是由于PIL没有编译freetype导致的...
分类:Windows程序   时间:2014-06-24 17:41:50    阅读次数:466
Snmp学习笔记
相关链接:Snmp学习笔记使用snmp4j实现Snmp功能(一)使用snmp4j实现Snmp功能(二)使用snmp4j实现Snmp功能(三)SNMP是英文“Simple Network Management Protocol”的缩写,中文意思是“简单网络管理协议”。SNMP是眼下最经常使用的环境管理...
分类:其他好文   时间:2014-06-24 14:56:19    阅读次数:176
xStream完美转换XML、JSON
XStream is a simple library to serialize objects to XML and back again.FeaturesEase of use.A high level facade is supplied that simplifies common use ...
分类:Web程序   时间:2014-06-22 13:31:51    阅读次数:285
poj-3791-An Easy Game-记忆化搜索
dp[i][j]:还有i个不相同的位置,还能走j步,一共有多少种走法。 很明显 dp[i][j]=sigm(dp[i-k][j-1]*c[i][k]*c[n-i][m-k]); 用记忆化搜索记忆一下即可。 #include #include #include #include #include #include #include using namespace std; #define m...
分类:其他好文   时间:2014-06-22 08:07:31    阅读次数:203
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!