- postman session
- web developer
- emplace_back
- C++
- Java
- postman automations
- Unity
- UI/UX Engineer
- 프런트엔드
- Front-end developer
- 다빈치 리졸브
- postman excel
- postman collection
- MFC
- postman tests
- c#
- LSL_Script
- Intellij
- Android/iOS Developer
- Android
- postman
- postman collection variables
- 좋은 개발자
- postman csv
- solidity
- Interaction developer
- postman pre-request
- 우수한 프런트 개발자
- postman html parse
- oracle
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- Today
- Total
목록분류 전체보기 (175)
david's daily developer note
이미지 텍스처를 객체에 입힌다. 이때, llSetTexture 함수의 2번째 인자는 객체 면의 번호를 의미한다. 또한, 객체의 Content 탭안에 설정하려는 텍스트가 존재하여야 한다.(이미지 업로드 Ctrl+U) 아래의 예제는, 4개의 텍스처가 3초 단위로 변경되는 Loop이다.(네이버, SL곳간 펌.) integer page=1; default { state_entry() { llSetTexture("Texture" + (string)page, ALL_SIDES); llSetTimerEvent(3); } touch_start(integer total_number) { page=page+1; if(page>4)page=1; llSetTexture("Texture" + (string)page, ALL_S..
아바타가 객체에 근처에 있을 때, 메세지를 띄운다. llSetText("안녕?", , 1.0); 두 번째, 인자는 글자의 색을 나타내며, 예는 다음과 같다. 세번째는 글자색의 알파값. vector white = ; vector grey = ; vector black = ; vector red = ; vector green = ; vector blue = ; vector yellow = ; vector cyan = ; vector magenta = ;
view plaincopy to clipboardprint? public static String byteToString( byte[] $byte ) { String result = EncodingUtils.getString( $byte, 0, $byte.length, "Latin-1") ; return result ; } view plaincopy to clipboardprint? public static byte[] stringToByte( String $byteString ) { byte[] byteArray = EncodingUtils.getBytes($byteString, "Latin-1") ; return byteArray ; } 출처 : http://androidnote.co.kr/5