개발(24)
-
ADB 세팅하기
1. adb가 설치된 폴더 경로를 확인한다. 2. 시스템의 고급 시스템설정에서 환경변수로 들어간다. 3. 시스템 변수에서 Path를 더블클릭 4. 새로 만들기를 하여 1번에서 확인한 폴더 경로를 넣어준다. 5. 이제 cmd로 adb를 사용할 수 있다.
2019.05.28 -
C# 수학 관련 함수들
Clamp (min, max) 최대 · 최소 컷 Pow (x, y) x의 y 승 CeilToInt (x) 소수점 반올림 및 정수 화 FloorToInt (x) 소수점 버림 및 정수 화 RoundToInt (x) 소수점 반올림 및 정수 화 Sign (x) 기호 (1 또는 -1 (float)) Lerp (from, to, t) 보간 LerpAngle (from, to, t) 각도 보간 (360도를 고려) InverseLerp (from, to, value) Lerp의 역함수 MoveTowards (current, target, maxDelta) maxDelta 대상 값에 MoveTowardsAngle (current, target, maxDelta) moveTowards 각도 판 Approximately (..
2019.05.28 -
ADB 명령어
모바일 루트 권한 adb root 모바일 들어가기명령어 모바일 루트권한 adb root 모바일 들어가기 adb shell 메모리 free -h cpu보기 uptime 애플리케이션의 processID취득 adb shell ps 종료예약(초) shutdown -s -t 3600 취소하기 shutdown -a 랜카드 정보 adb shell iw dev wlan0 info apk 대량으로 설치하기 sd카드로 설치 adb -s 시리얼넘버 shell for apk in sd카드주소/apk/*.apk; do pm install -r $apk ; done adb device로 시리얼넘버 추출 adb shell mount로 sd카드 주소 추출 adb -s 시리얼넘버 shell mount 특정기기 주소 추출 adb she..
2019.05.28 -
DB 명령어
경로 지정하기 : cd sql경로주소 실행하기 : sqlite3.exe 이름.db select하기 : select * from T_Config; delete하기 : delet from T_Config where _id = value; DML(Data Manipulation Language) 데이터 조작어 4종류 -SELECT : 데이터 조회할 때 사용한다. -INSERT : 데이터 입력할 때 사용한다. -UPDATE : 데이터 내용 변경 할 때 사용한다. -DELETE : 데이터 내용 삭제할 때 사용한다.
2019.05.28 -
c# 압축하기, 압축풀기
ICSharpCode.SharpZipLib이 필요하다. 예제 스크립트) using System.IO; using System.Collections; using ICSharpCode.SharpZipLib.Zip; public class ZipManager { public static float ProgressValue = 0; public static bool retVal = false; /// /// 특정 폴더를 ZIP으로 압축 /// /// 압축 대상 폴더 경로 /// 저장할 ZIP 파일 경로 /// 압축 암호 /// 폴더 삭제 여부 /// 압축 성공 여부 public static bool ZipFiles(string targetFolderPath, string zipFilePath, string pa..
2019.05.21 -
버튼 클릭시 이미지의 알파영역을 무시하기
이미지의 Mesh Type을 Full Rect로 변경 Read/Write Enabled를 체크 스크립트 예제) 1234567891011121314using UnityEngine;using System.Collections;using UnityEngine.UI; public class AlphaButton : MonoBehaviour { public float AlphaThreshold = 0.1f; void Start() { this.GetComponent().alphaHitTestMinimumThreshold = AlphaThreshold; } }Colored by Color Scriptercs
2019.05.20