안드로이드 출시 오류 앱 번들

Unity/Android Build 2020. 8. 12. 21:27

https://scvtwo.tistory.com/72

'Unity > Android Build' 카테고리의 다른 글

구글 출시 연동 영상자료  (0) 2020.08.12
:

구글 출시 연동 영상자료

Unity/Android Build 2020. 8. 12. 21:26

https://www.youtube.com/watch?v=74Spcz9Hhgo

시작 ~ 14분 : 앱등록
14~ : 구글 로그인 GPGS

'Unity > Android Build' 카테고리의 다른 글

안드로이드 출시 오류 앱 번들  (0) 2020.08.12
:

Button Image 변경

Unity/찾아본것 2020. 8. 12. 10:11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
 
public class SceneTestStageBtn : MonoBehaviour
{
    public Button btn;//버튼
    public Sprite img;//바꿀 이미지
 
    void Start()
    {
        this.btn.GetComponent<Image>().sprite = this.img;
    }
}
 
cs

https://answers.unity.com/questions/1127944/changing-the-image-of-a-button-with-a-script.html

:

Unity Button Array onClick

Unity/찾아본것 2020. 8. 11. 23:55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
 
public class TestButtonArray : MonoBehaviour
{
    public Button[] btns;
 
    private void Start()
    {
        for (int i = 0; i < this.btns.Length; i++)
        {
            int index = i;
            btns[index].onClick.AddListener(() => this.TaskOnClick(index));
        }
    }
 
    private void TaskOnClick(int index)
    {
        Debug.Log("니가 누른 버튼" + index, btns[index]);
    }
}
 
cs


https://answers.unity.com/questions/1376530/add-listeners-to-array-of-buttons.html

:

Unity GameObject 부모 자식 관계 설정

Unity/찾아본것 2020. 8. 11. 22:14

https://docs.unity3d.com/ScriptReference/Transform-parent.html

:

20200811 임시, 추가 변수없이 두 정수값 교체

Algorithmus 2020. 8. 11. 18:18

http://www.csharpstudy.com/algo/qa.aspx?Id=17&pg=0

두개의 정수 a,b의 값을 서로 바꾸는 C# 코드를 쓰시오. (단, a,b이외의 임시 변수 사용 불가)

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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Algorithm20200811
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 17;
            int b = 11;
 
            a ^= b;
            b ^= a;
            a ^= b;
 
            Console.WriteLine("{0}, {1}", a, b);
            Console.ReadKey();
        }
    }
}
 
cs



1.a^=b

a = a^b, b=b

2.b^=a
a = a^b, b = b^(a^b) = a^(b^b) = a^0 = a

3.a^=b
a = (a^b)^b = a^(b^b) = a^0 = a, b=a

4.WriteLine()
a = 11, b = 17

XOR교체

*그냥 하나 더 쓰자..

'Algorithmus' 카테고리의 다른 글

C# 10430 분배법칙  (0) 2021.10.25
[설탕 배달]06-12  (0) 2019.06.12
AStar algorithm 4방향(캐릭터 이동)  (0) 2019.05.21
AStar algorithm  (0) 2019.05.20
[Palindrome Number]05-14  (0) 2019.05.14
:

unity editor select list

Unity/찾아볼것 2019. 8. 21. 10:50

unity editor select list

'Unity > 찾아볼것' 카테고리의 다른 글

custom Inspector 겹치기 오류  (0) 2019.07.23
<uBMSC> 리듬게임  (0) 2019.05.09
Unity Editor확장입문 참고  (0) 2019.05.07
찾아볼것 리스트  (0) 2019.04.12
:

custom Inspector 겹치기 오류

Unity/찾아볼것 2019. 7. 23. 17:27


아니 왜 이러세요 제발;;



https://answers.unity.com/questions/1364895/custom-property-drawer-overlaps-with-other-compone.html
https://answers.unity.com/questions/940970/header-attribute-and-custom-property-drawer-overla.html
( 위치지정을 미리 안 해놔서 그런 듯...? )

'Unity > 찾아볼것' 카테고리의 다른 글

unity editor select list  (0) 2019.08.21
<uBMSC> 리듬게임  (0) 2019.05.09
Unity Editor확장입문 참고  (0) 2019.05.07
찾아볼것 리스트  (0) 2019.04.12
: