2014年8月31日 星期日

[ Unity Animation ] Palm Trees Pack

1. Download and import the package of Palm Trees Pack.

2. We add some code in the method of Setup.


The variable of trees is defined as follows.
private var trees:GameObject;

The some codes are added in the method of Setup in order to adjust the position in the Screen.
trees = GameObject.Find("All PalmTrees");
trees.transform.localScale = Vector3(0.5f, 0.5f, 0.5f);
trees.transform.position += Vector3(-0.2f, -0.4f, 0.0f);

 3. _The property of WaveAndDistance is found in Waving DoublePassCullBackface located in the the folder of Shaders.


[Unity Animation] Spider attacks.


The following steps is presented.
1. Start the unity and then open Asset Store Window.
2. Download the SPIDER package.

3. Open the scene of temp_scene.
4. Observe all actions of animation.

5. Create a C# file and then open the Editor of Assembly CSharp.
6. Write the programming of spider animation.
7. Build and Running

2014年8月21日 星期四

[ Embedded System] 使用fastboot燒錄Android系統

最近有一件事困擾敏哥,就是因為DNW工具的USB驅動在WIN 7作業環境下,裝不起來,今天特地到長高公司取經,學會新的燒錄方法,其步驟如下:
1. 注意把嵌入式系統S5PV210線接好,包括電源線、OTG USB、RS232(下圖左方依順排列)
另外電腦端也要接好,左方RS232接至RS232/USB轉接器,右方接USB。

2.查看裝置管理員,檢查RS232/USB轉接器驅動是否有裝起來。


3.啟動DNW,注意標題欄上,COM:x表示RS232埠還沒開啟
 設定連接埠及速率,按下OK。
 選擇Serial Port功能選項中的connect,此時有看到COM2,115200bps,表示RS232埠開啟正常。






4.開啟嵌入式系統

在DNW出現訊息後,按下空白鍵,進入主控台模式。
 5.鍵入 fastboot命令

觀察嵌入式系統畫面
在platform-tools目錄下,可以找到3_fastboot_file_system.bat,其內容如下

fastboot flash ramdisk ramdisk-uboot.img
fastboot flash system system.img
fastboot flash userdata userdata.img
pause

執行後即可以進行燒錄工作

 在DNW可以看到燒錄進度


燒錄完成後,可以看到DNW及DOS畫面如下:



 等燒錄完畢後,可以看到嵌入式系統呈現紅色畫面。
 開機後的畫面