skip to main
|
skip to sidebar
史不拉雞不拉史
2014年5月8日 星期四
Some shader magic...
From
color.a *= step(0, 1.0 - max(clipFactor.x, clipFactor.y));
into:
color.a *= saturate(sign(1.0 - max(clipFactor.x, clipFactor.y)) + 1);
hmm...
2013年8月9日 星期五
Create Google Breakpad Symbol file
#!/bin/sh
MODULE=""
ID=""
LIB=""
SYM=$1.sym
SYM_DIR=""
for SO in $(find obj/local -mindepth 1 \( -name $1 -a -prune -type f \) -print)
do
dump_syms $SO > $SYM
MODULE=$(head -n 1 $SYM)
ID=$(echo $MODULE | awk '{print $4}')
LIB=$(echo $MODULE | awk '{print $5}')
SYMDIR=symbols/$LIB/$ID
mkdir -p $SYMDIR
mv $SYM $SYMDIR
done
2013年4月7日 星期日
ps3 controller official driver
In brief:
Sony just put official ps3 controller driver in Playstation Mobile Development Kit.
You just only need to register an account to be a developer and you can download it.
Following the instruction then you can use ps3 controller on your PC.
2012年10月30日 星期二
cygwin fix permission
修正在cygwin下面的檔案權限...
參數是路徑
#!/bin/sh
find $1 -type d -print0 | xargs -0 chmod 755
find $1 -type f -print0 | xargs -0 chmod 644
find $1 -name '*.sh' -print0 | xargs -0 chmod 744
會修改指定路徑下的所有目錄權限為rwxr-xr-x
所有檔案權限rw-r--r--
所有sh檔rwxr--r--
2012年8月31日 星期五
unity用NativeActivity時ui event沒反應的解法
source:
http://answers.unity3d.com/questions/309908/is-it-possible-to-add-java-ui-to-unity.html
修改AndroidManifest.xml
<
meta-data
android:name
=
"unityplayer.ForwardNativeEventsToDalvik"
android:value
=
"true"
/>
就ok
2012年8月29日 星期三
解決android ddms / draw9patch 沒辦法在windows x64下正常啟動
加入環境變數JAVA_HOME=你的jdk安裝位置
2012年8月4日 星期六
giflib on cocos2d-x
雖然gif檔很少人在用了,不過還是幫cocos2d-x加了giflib支援
較舊的文章
首頁
訂閱:
文章 (Atom)
網誌存檔
▼
2014
(1)
▼
5月
(1)
Some shader magic...
►
2013
(2)
►
8月
(1)
►
4月
(1)
►
2012
(16)
►
10月
(1)
►
8月
(3)
►
7月
(2)
►
6月
(1)
►
5月
(4)
►
4月
(1)
►
3月
(2)
►
2月
(1)
►
1月
(1)
►
2011
(8)
►
8月
(1)
►
7月
(1)
►
5月
(2)
►
2月
(3)
►
1月
(1)
►
2010
(81)
►
12月
(1)
►
11月
(2)
►
10月
(1)
►
9月
(3)
►
8月
(5)
►
7月
(4)
►
6月
(10)
►
5月
(11)
►
4月
(10)
►
3月
(15)
►
2月
(17)
►
1月
(2)
►
2007
(3)
►
4月
(3)
標籤
Game
(33)
Programming
(30)
Note
(15)
Android
(10)
PV3Tool
(10)
iPhone
(8)
DxLib
(7)
Mac
(5)
Hardware
(4)
cocos2d-x
(3)
unity
(3)
DS
(2)
Rockman
(2)
Xcode
(2)
FF13-2
(1)
Thinkpad
(1)
Wonderwitch
(1)
cocos2d
(1)
cygwin
(1)
giflib
(1)
justin
(1)
nicolime
(1)
objc
(1)
psv
(1)
twitch
(1)
偽トロキャプチャ
(1)
關於我自己
Splash5
檢視我的完整簡介