2019년 4월 24일 수요일
2019년 4월 17일 수요일
string 자르기
string 자르기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
CurrentPath = Application.dataPath;
string[] tmptmp = CurrentPath.Split('/');
string realPath =null;
for (int i = 0; i < tmptmp.Length-1; i++)
{
if (i != tmptmp.Length - 1)
realPath += tmptmp[i] + '/';
else
realPath += tmptmp[i] +'/'+"Models";
}
CurrentPath = realPath;
| cs |
2019년 4월 16일 화요일
fbxsdk.h: No such file or directory
2019년 4월 14일 일요일
2019년 4월 11일 목요일
heidisql 이름 쿼리(feat. update,randomValue, string + int)
이름 출력 쿼리(feat. heidisql string+int)
SET nC = CONCAT('CT0',CAST(t_INT AS CHAR(10)));
##CONCAT('string','string');
int to string??
CAST(int as char(10));
DELIMITER $$
DROP PROCEDURE IF EXISTS query_test $$
CREATE PROCEDURE query_test(IN var INT)
BEGIN
DECLARE nCnt INT DEFAULT 0;
DECLARE t_INT INT DEFAULT 10100;
DECLARE nC varchar(100) DEFAULT 'CT0';
WHILE (nCnt < var) DO
SET nCnt = nCnt + 1;
SET t_INT = t_INT + 1;
SET nC = CONCAT('CT0',CAST(t_INT AS CHAR(10)));
SELECT nC;
# SELECT nC AS 결과;
END WHILE;
END $$
DELIMITER ;
UPGRADE 직접 INSERT하는 프로시져
DELIMITER $$
DROP PROCEDURE IF EXISTS query_test $$
CREATE PROCEDURE query_test(IN var INT)
BEGIN
DECLARE nCnt INT DEFAULT 0;
DECLARE t_INT INT DEFAULT 10100;
DECLARE nC varchar(100) DEFAULT 'CT0';
WHILE (nCnt < var) DO
SET nCnt = nCnt + 1;
SET t_INT = t_INT + 1;
SET nC = CONCAT('CT0',CAST(t_INT AS CHAR(10)));
//assembly_usedtime에 해당하는 데이터를넣는다
INSERT INTO assembly_usedtime VALUES(nC,100,DEFAULT,200,100,RAND()*(10000-9700)+9700,100);
SELECT nC;
# SELECT nC AS 결과;
END WHILE;
END $$
DELIMITER ;
//RANDOM VALUE 사용법
number >= min and <max
RAND()*(max-min)+min
number >= 9700 and <10000
RAND()*(10000-9700)+9700
2019년 4월 9일 화요일
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELIMITER' at line 1
heidiSQL에서 발생한 Error
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELIMITER' at line 1
마지막 줄
END $$
DELIMITER;
에서
DELIMITER ;
이렇게 세미콜론과 DELIMITER를 띄워쓰면 에러가 사라짐 ㅋ
Unity Web 링크 열기 (OpenURL for Unity)
1
2
3
4
5
6
7
|
public void WebLink()
{
Application.OpenURL("원하는 주소");
}
| cs |
unity 쿨타임 버튼 구현 (원 , 사각형?)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
CircleDraw
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class CircleDraw : MonoBehaviour {
Image m_image;
public float degree;
// Use this for initialization
void Start () {
m_image = this.gameObject.GetComponent<Image>();
}
public void SetdegreeCircle(float angle)
{
degree = angle;
m_image.fillAmount = (angle / 360);
}
public void SetdegreeCircle_otherSide(float angle)
{
float tmp = 360 - angle;
degree = tmp;
m_image.fillAmount = (tmp / 360);
}
public float _getDegree()
{
return degree;
}
}
| cs |
클릭시 UI 체크
피드 구독하기:
글 (Atom)
git rejected error(feat. cherry-pick)
문제 아무 생각 없이 pull을 받지않고 로컬에서 작업! 커밋, 푸시 진행을 해버렷다. push에선 remote와 다르니 당연히 pull을 진행해라고 하지만 로컬에서 작업한 내용을 백업하지 않고 진행하기에는 부담스럽다(로컬작업 유실 가능성) 해결하려...
-
/// < summary > /// 검색 조건과 내용으로 테이블에 있는 데이터를 검색하는 메서드 /// </ summary > /// < param name = "valu...
-
public class Test : MonoBehaviour { //매출 데이터를 읽어 들이고 Sales 객체 리스트를 반환한다. List<string> list = new List<string> { ...
-
설명과 package파일 https://gitlab.com/dooo3/scrollview_objpool 하는이유 100개 이상일때 scrollview가 퍼포먼스가 떨어진다... Point!!!! 1.shopItemTableViewCell,...