cmd
cd G:\DesignSoftware\cocos2d-x-2.2.3\cocos2d-x-2.2.3\tools\project-creator
create_project.py -project HelloWorld -package com.gkh.helloworld -language cpp...
分类:
其他好文 时间:
2014-07-26 02:16:26
阅读次数:
235
monkeyrunner在执行device = MonkeyRunner.waitForConnection()一直报错的问题(或者[main] [com.android.chimpchat.adb.AdbChimpDevice] Timeout while trying to create chi...
分类:
移动开发 时间:
2014-07-26 01:01:56
阅读次数:
224
1.飞机发射子弹型 想要实现子弹的的飞行效果,又不想在每帧Update里计算位置,最好的方法调用CCMoveTo 例在发射子弹的时机,能够ccTouchBegan时: CCMoveTo* move = CCMoveTo::create(0.4f, ccp(_plane->getPosition(.....
分类:
移动开发 时间:
2014-07-26 00:36:26
阅读次数:
267
基本命令sqlplus / as sysdba--命令行打开oracle(以dba身份登录)drop user myusers cascade;--删除用户(级联)create user myusers identified by 123;--创建用户(用户名:myusers。密码:123)gran...
分类:
数据库 时间:
2014-07-26 00:15:16
阅读次数:
316
Scale9Sprite在用Scale9Sprite.create的时候出现Uncaught TypeError: Cannot call method 'create' of undefined这个错误,后来发现在默认情况下,project.json里的modules只自带cocos2d模块,通过...
分类:
Web程序 时间:
2014-07-25 19:00:01
阅读次数:
361
http://www.polycount.com/forum/showthread.php?t=117185I am making some custom terrain shaders with strumpy's editor and I want to be able to create no...
分类:
Web程序 时间:
2014-07-25 16:46:32
阅读次数:
379
创建>sc create TestService binPath= "D:\EngineService\TestService.exe" start= auto[SC] CreateService 成功>net startTestService注意:binPath= 后面有一个空格删除>sc del...
分类:
其他好文 时间:
2014-07-25 16:38:51
阅读次数:
192
.a的静态库并不是只需要一个就够。往往需要i386(模拟器)、armv6和armv7(真机)的3个版本。可以使用一下命令查看该.a文件所支持的版本型号。lipo -i xx.a还可以使用如下命令创建一个通用的.a文件:lipo -create /Users/Travis/Desktop/libIMI...
分类:
其他好文 时间:
2014-07-25 14:16:11
阅读次数:
240
public void Create( string mdbPath ){if( File.Exists(mdbPath) ) //检查数据库是否已存在{throw new Exception( "目标数据库已存在,无法创建 ");}// 可以加上密码,这样创建后的数据库必须输入密码后才能打开mdb...
分类:
数据库 时间:
2014-07-25 14:05:11
阅读次数:
429
windows下安装模块错误
1)Unable to find vcvarsall.bat :
打开“\Lib\distutils\msvc9compiler.py”
找到 toolskey = “VS%0.f0COMNTOOLS” % version,
直接修改为 toolskey = “VS100COMNTOOLS” (如果是vs2012或者vs2013则要从100改成120)
2...
分类:
编程语言 时间:
2014-07-25 11:17:01
阅读次数:
240