自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

一切可开发

问题即机会

  • 博客(115)
  • 资源 (5)
  • 收藏
  • 关注

原创 叙利亚研究

阿萨德家族一直依仗前苏联、俄罗斯,对美国不买账,早就让美国决策层怒火中烧。

2018-05-30 08:51:15 294

原创 Your project

1.       Your project 1.1   The Tool 流程图,需要在view和statemachine中间穿梭,变量和event两边窜。 Hard tofind where the animation plays Namingrules! 1.2   Cluster Architect 1.2.1         templates used AnalogSpee

2016-09-12 19:09:02 600

原创 guide

2015-07-05 21:42 about training: 1. widget 2. variable relationship, good points  (bad points: i feel the remove mechanism sucks, when one variable is deleted, but some relative exist, it shows a

2015-07-05 22:14:44 502

原创 iOS Audio 后台播放

1. Info.plist set Required background mode to App plays audio 2. And write below codes in didFinishLaunching Method of AppDelegate.m NSError *setCategoryErr = nil; NSError *activationErr = nil;

2015-02-07 15:37:29 762

原创 iOS音乐播放器实现日记

2015-2-1 10:30 参考代码里,下载保存歌曲时,创建歌手及音乐文件夹意义何在?文件夹名称如何定? 猜想它对于音乐分文件夹存储,读的时候先锁定文件夹,再具体到最后只包含一支歌曲的文件夹。 它就是没有一个flatlist之类的东西,它的数据库设计方面应该是没有找到最好的方法。 而且这似乎意味着,这种方法很难扩展以满足对按专辑,风格分类的需求。 不管怎样,我还是把它先完全吃透,再做进

2015-02-02 11:00:03 674

原创 漫游

现在要做的事情是人在场景中man

2014-05-12 20:10:34 637

原创 make wall not penetratable

void Update () {  var fwd = transform.TransformDirection (Vector3.up); if(Input.GetKey(KeyCode.UpArrow)){ if (!(Physics.Raycast (transform.position, fwd, (float)0.2))) { gameObject.transform.T

2014-05-10 15:24:09 644

原创 把"Assets/Resources/mats" 和“"Assets/Resources"下的图片文件全部编译成assetBundle

static void ExportAssetBundles() {   string path = "Resources/mats/"; string [] fileEntries = Directory.GetFiles(Application.dataPath+"/"+path); foreach(string fileName in fileEntries) { string fi

2014-04-26 10:21:32 648

原创 unity assetBundle使用image材质

BuildPipeline.BuildAssetBundle( AssetDatabase.LoadMainAssetAtPath("Assets/rac_basic_sample_project2.FBX"), null, "rac_basic_sample_project2.unity3d", BuildAssetBundleOptions.CollectDependencies | Bu

2014-04-21 09:51:52 1081

原创 从.fbx 到生成web版执行文件,完全不用unity集成开发环境

1. 工程建立到 "e:/danny/hhh",把文件夹Editor和.fbx文件及Test.cs拷贝到 "e:/danny/hhh/Assets" 2. C:\Program Files\Unity\Editor\Unity.exe -quit -batchmode -createProject "e:/danny/hhh"    执行此命令后,.fbx会自动import。 3. Unit

2014-04-16 17:12:27 2598

原创 unity--通过部件名称的子字符串找到部件

function ToggleRenderersWithSubName(theName : String, state:boolean){         for(var gameObj : GameObject in GameObject.FindObjectsOfType(GameObject)) { if(gameObj.name.Contains("[243274]")

2014-04-16 17:01:40 1493

原创 BuildAssetBundle with .FBX

BuildPipeline.PushAssetDependencies(); BuildPipeline.BuildAssetBundle( AssetDatabase.LoadMainAssetAtPath("Assets/hoty.FBX"), null, "hoty.unity3d", BuildAssetBundleOptions.CollectDependencies | Buil

2014-04-16 01:56:39 1247

原创 create Scene using script

EditorApplication.SaveScene("Assets/aaa.unity");

2014-04-14 13:24:55 503

原创 unity load .fbx and image files automatically

using UnityEngine; using UnityEditor; using System.IO; public class MyEditorScript { [@MenuItem("Asset/Build AssetBundles From Directory of Files")] static void MyMethod () {    ExportAssetB

2014-04-14 11:39:29 675

原创 bind "xxx.js" to object using script

var gobj:GameObject; gobj=(GameObject.Find(theName));  gobj.renderer.enabled =state; if(state == false)   gobj.AddComponent("RotateMove");

2014-04-13 21:18:27 456

原创 define Shader by script

curObj.renderer.material.shader = Shader.Find("Transparent/Diffuse");

2014-04-11 16:55:57 517

原创 Unity Toggle image button

Toggle按钮,状态1 var content_element_visibility: GUIContent; var style_element_visibility: GUIStyle; style_element_visibility.normal.background = Resources.Load("element-invisible"); style_ele

2014-04-11 11:36:30 1225

原创 Unity Sqlite Setup

1. Find two files "Mono.Data.SqliteClient.dll" and "System.Data.dll" in local unity directory and put them in the project Assets folder. (two files can also be downloaded from: http://vdisk.weibo.com/

2014-04-02 07:16:30 666

原创 Auto build as soon as Unity is started

1. create "MyEditorScript.cs" in "../Assets/Editor/" using UnityEditor; class MyEditorScript {      static void MyMethod ()      {          string[] scenes = { "Assets/hot.unity" };          Bu

2014-04-01 12:01:59 801

原创 s

http://www.daniweb.com/software-development/cpp/threads/105263/how-to-delete-some-text-from-a-txt-file

2013-04-23 22:05:38 700 3

原创 2013-03-28 ideas

is there a kind of job that does not need coding, realizing. just only verifying, documenting.

2013-03-29 18:27:58 539

原创 0326- morning plan and reminder

03-28 to do: multi-partition track FSE_ITEM_TYPE_PLAYLIST track total_item_path_length  how filelist scanned favorite GIS release IF multi usb confirm copy 100% report same song cop

2013-03-26 15:24:43 607

原创 Sep2012

1.      RequestMediaPlayerIndexedListSlice(WnindowStart, WindowSize) is used when scrolling            Keyword: GIS351, Scroll Questions: 1. list handle 2. PlayMeidaPlayerObject &  QuickPlay:

2012-09-23 10:35:18 308

原创 mp3

http://snowlotus.iteye.com/blog/245683   MP3信息格式 详说ID3v1和ID3v2 http://hi.baidu.com/d3sky/blog/item/62d2ab18d372ef0534fa4135.html  ID3 & APE 两种常见tag格式简介 http://en.wikipedia.org/wiki/APE_

2012-03-04 22:18:57 411

原创 Feb

0214 why each time the same Application_Initialization() called but the different call_APM_Get_SAL_Config() is called APM_Get_SAL_Config is declared in Application_manager_cbk.h but defined in diff

2012-02-14 16:52:38 388

原创 2012 want

希望展示更优秀的真我, 让心灵驰骋在崇高的追求之中, 莫让自己伟大的青春消逝于卑微的世界里,它永远只属于那个灿烂的王国

2012-02-13 22:09:47 310

原创 doing experiments

02-16 plan add a process! 02-14 experiment plan 0 media initialization 0.1 0.2 0.3 1. media insert , track code, draw own sequence chart! 1.1 1.2 1.3 2. media play 2.1 2.2 2.3 3

2012-02-09 10:21:20 855

原创 tomorrow presentation

0. abstraction –TheAPI should abstract the behavior of the module to the extent possible »Definethe “essence” of the module. (abstraction) »Avoidunnecessary publishing of implementation details.

2012-02-06 22:02:35 370

原创 none

0210 1. I should be more active when group discussion. very important!!!  I am virtual PM! 2. more down to earth work!!! experience and experience!!! then more GOOD question and discussions with oth

2012-02-06 16:10:39 395

原创 application manager

http://blog.sina.com.cn/s/blog_415a66f00100ji17.html               local QObject and Javascript

2012-02-05 15:24:21 572

原创 Basa

So, what is unique about BASA? –Specifically addresses software reusein a Telelogic Synergy environment »here,“reuse” means reuse with out change, not copy, paste, then change »provides mechanisms

2012-02-02 10:12:40 648

原创 questions-b9 code

2012-2-1 B9 code: 1. void APM_Task(void *unused_parameter) 1.0 what is a complete process of implementing one task? for example ipod? 1.1 APM_Get_App_Configuration(&APM_Config);? 1.2 *APM_Config

2012-02-01 14:07:19 499

原创 sw-microcontroller

CH1 MPU & MCU Microprocessor is an integrated circuit in which CPU, ALU, and control functions are combined. It contains no on-chip memory and I/O ports. Microcontroller is a single purpose proces

2012-01-16 14:49:29 829

原创 delphi-sw

Software Process Improvement Capability dEtermination   There are two main standards used to perform assessments: »ISO/IEC 15504 (SPiCE) »Automotive SPiCE (based on ISO/IEC 15504)   ISO/IEC

2012-01-16 13:32:10 444

原创 delphi-requirement

4000 Application Download & Management Methodology four methods to transfer an application to the vehicle. 1.download from an in-vehicle application? 2. remote GM website 3. usb 4. private app ob

2012-01-11 15:12:00 332

原创 delphi-c

result of test 1: 1. Comment removal and file inclusion are important preprocessor tasks but type checking is a compiler task, not a C preprocessor task. 2. The #if is followed by:     A constant

2012-01-10 09:05:57 386

原创 MOST

question: 1. no interruptions, collisions, or delay in the transport 1. MOST 1.1 media oriented MOST Application Framework is used in MOST, instead of a device oriented modeling.

2012-01-08 17:17:23 771

原创 question-begin

question: 02-09: 1. SAL_Util_Once support guaranteed execution of code exactly once- can initialize logic exactly once. 2. a0. B9+ cancaled? so what I am doing? 1. example XML file: inclu

2012-01-08 17:08:09 526

原创 intel 笔试题

http://www.docin.com/p-265656698.html baidu http://wenku.baidu.com/view/1ecca2da50e2524de5187ed7.html 函数指针 为类成员函数 1. 解释例如mov ax,100H 这样一条指令的cpu, os, memory等都完成了什么样的工作。 2. 下面哪种排序法对12354最快 a q

2011-11-08 11:39:03 1391

原创 组成原理

海文: 8. 计算机使用总线结构的主要优点是便于实现积木化,同时:减少信息传输线的条数 14. 某SRAM芯片,存储容量为64K*16位,该芯片的地址线和数据线的数目: 20. 中断向量地址是:中断服务例程入口地址的指示器 48. 系统总线中控制线的功能是:提供主存、I/O接口设备的控制信号响应信号

2011-11-08 10:22:25 431

gstreamer 项目经验总结

项目经验提炼,如果你刚刚开始接收这门技术,这是你不二的选择

2012-04-19

我的项目工程 Wince MFC 基于对话框

我的项目工程 wince mfc 基于对话框

2009-03-23

VT6656_153_01_samsung2440

无线网卡驱动 wince 5.0 三星2410 2440

2009-03-23

工程控制论-中文-钱学森

伟大的钱学森,伟大的著作 伟大的钱学森,伟大的著作 伟大的钱学森,伟大的著作

2009-03-23

我写的一个wince的MFC应用程序

是以项目经历为背景,对初学者很有参考价值

2009-03-17

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除