Get it on Google Play


Wm뮤 :: '분류 전체보기' 카테고리의 글 목록 (26 Page)

블로그 이미지
가끔 그림그리거나 3D모델링하거나
취미로 로봇만드는
퇴직한 전자과 게임프로그래머
2020.3.48f1 , 2022.3.6f1 주로 사용
모카쨩
@Ahzkwid

Recent Comment

Archive


'전체보기'에 해당되는 글 1012건

  1. 2022.04.30 유니티 csv 에셋
  2. 2022.04.24 유니티 차트
  3. 2022.04.23 유니티 Log 확인 에셋
  4. 2022.04.23 자바스크립트 인풋패널 가져오기
  5. 2022.04.16 AWS EC2 사용하기
  6. 2022.04.14 ClearType 초기화
  7. 2022.04.09 파이어 스토리지
  8. 2022.04.02 유니티 문자인식
2022. 4. 30. 11:46 Unity

 

 

 

https://assetstore.unity.com/packages/tools/integration/csv-serialize-135763

 

CSV Serialize | 기능 통합 | Unity Asset Store

Use the CSV Serialize from VisualWorks on your next project. Find this integration tool & more on the Unity Asset Store.

assetstore.unity.com

 

 

 

 

 

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Demo : MonoBehaviour
{

    public Test[] tests;
    [System.Serializable]
    public class Test
    {
        public int num = 0;
        public string name = "";
    }
        // Start is called before the first frame update
    void Start()
    {

        var csv = "num,name\n0,\"mom\"\r\n1,dad\n\"2\",\"me\"\n\"3\",\"한국어\"";
        tests = CSVSerializer.Deserialize<Test>(csv);
        var list = CSVSerializer.ParseCSV(csv);
        for (int x = 0; x < list.Count; x++)
        {
            for (int y = 0; y < list[x].Length; y++)
            {
                Debug.Log($"[{x}][{y}]{list[x][y]}");
            }
        }
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}

 

 

잘된다

'Unity' 카테고리의 다른 글

유니티 창위치 설정  (0) 2022.06.18
유니티 차트  (0) 2022.04.24
유니티 Log 확인 에셋  (0) 2022.04.23
posted by 모카쨩
2022. 4. 24. 01:16

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2022. 4. 23. 12:18 Unity

 

 

Log Viewer

 

더보기

 

 

https://assetstore.unity.com/packages/tools/integration/log-viewer-12047

 

Log Viewer | 기능 통합 | Unity Asset Store

Use the Log Viewer from dreammakersgroup on your next project. Find this integration tool & more on the Unity Asset Store.

assetstore.unity.com

 

 

이녀석을 디버그빌드에서만 사용하게 온오프걸면 된다

반시계로 마우스를 돌리면 활성화된다

 

단점은 닫기버튼이 작은화면에선 안 보이고 뒤쪽 UGUI도 눌려버려서 기분 더럽다

 

 

 

 

In-game Debug Console

 

 

 

'Unity' 카테고리의 다른 글

유니티 차트  (0) 2022.04.24
유니티 문자인식  (0) 2022.04.02
유니티 Mesh Boolean  (0) 2022.03.15
posted by 모카쨩
2022. 4. 23. 11:53 웹/자바스크립트

 

 

 

 

 

인풋 id는 query랜다

버튼 id는 search_btn

 

 

document.getElementById('query').value="검색테스트";
document.getElementById('search_btn').click();

그래서 각각코드는 이렇게 된다

 

 

 

 

실행하면 잘된다

' > 자바스크립트' 카테고리의 다른 글

자주 쓰는 자바 스크립트 코드  (0) 2023.12.01
자바스크립트 기본  (0) 2021.04.05
posted by 모카쨩
2022. 4. 16. 14:39

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2022. 4. 14. 11:04 공학기술

'공학기술' 카테고리의 다른 글

베가스 14 손떨방  (0) 2023.04.09
iOS 터미널 사용법  (0) 2022.03.05
전자부품 자료 모음  (0) 2021.12.17
posted by 모카쨩
2022. 4. 9. 11:28 FireBase

 

 

 

 

 

 

'FireBase' 카테고리의 다른 글

자주 쓰는 파이어베이스 RTDB 코드  (0) 2021.10.17
파이어 베이스 DB 보안  (0) 2021.10.16
파이어 베이스 오류모음  (0) 2021.10.11
posted by 모카쨩
2022. 4. 2. 12:23 Unity

 

 

 

https://github.com/Neelarghya/tesseract-unity

 

GitHub - Neelarghya/tesseract-unity: Standalone OCR plugin for Unity using Tesseract

Standalone OCR plugin for Unity using Tesseract. Contribute to Neelarghya/tesseract-unity development by creating an account on GitHub.

github.com

 

 

 

 

Main Scene을 열어서 돌려보면 된다

StreamingAssets는 경로참조를 하기 때문에 최상단에 있어야한다

 

 

 

이미지는 저걸 바꾸면 됨

간단하게 쓰려면 Display Text에서 text를 추출해도 된다

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

결과물

 

'Unity' 카테고리의 다른 글

유니티 Log 확인 에셋  (0) 2022.04.23
유니티 Mesh Boolean  (0) 2022.03.15
유니티 IOS 인터페이스  (0) 2022.02.25
posted by 모카쨩

  • total
  • today
  • yesterday

Recent Post

저사양 유저용 블로그 진입