코딩을 한단계씩 부셔보자.

코딩을 한단계씩 부셔보자.

  • 분류 전체보기 (319)
    • 코딩배움일지 (157)
      • JAVA (79)
      • DataBase (29)
      • Web 구현 (34)
      • 인터페이스 구현 (15)
    • 개인적인 공부 (142)
      • 자바 (6)
      • 백준 (47)
      • Java의 정석 (0)
      • 그냥정리 (2)
      • Database 복습 (5)
      • 테스트 페이지 (1)
      • 프론트엔드 (7)
      • Unity (29)
      • Python (45)
    • TeamProjectHappy (12)
      • front (9)
      • database (3)
    • 개발일지 (2)
      • Journey to West (2)
  • 홈
  • 배움기록
  • 태그
  • 방명록
RSS 피드
로그인
로그아웃 글쓰기 관리

코딩을 한단계씩 부셔보자.

컨텐츠 검색

태그

파이썬 배열 왕초보 SQL 유니티 Python java기초 백준 javascript 2D 자바 java c# database unity CSS html javabasic 자바기초 Web

최근글

댓글

공지사항

아카이브

전체 글(319)

  • Torque()

    Assets 에 새폴더 생성 새 스크립트 생성 public class PlayerController : MonoBehaviour { [SerializeField] float torqueAmount = 1f; Rigidbody2D rb2d; // Start is called before the first frame update void Start() { rb2d = GetComponent(); } // Update is called once per frame void Update() { if(Input.GetKey(KeyCode.LeftArrow)) { rb2d.AddTorque(torqueAmount); } else if(Input.GetKey(KeyCode.RightArrow)) { rb2d.AddTo..

    2023.03.15
  • Surface Effector 2D

    Effector 기능 중 하나이다. Effector 가 없을 때 표면이 될 오브젝트에 Add component - Surface Effector2D 를 선택해준다. 스노우 보더가 경사를 따라 내려간다. speed - 로하면 반대로 간다.

    2023.03.14
  • CineMachine

    메인 카메라가 어떻게 작동할지 로직을 정함 상단의 Window - Package- UnityRegistry - CineMachine 검색 install Hierarchy 에 CineMachine - Virtural Camera Framing Transposer 로 변경 Follow 를 해당 움직이는 것에 설정을 하면 따로 Script 를 주지 않고 공을 따라간다.

    2023.03.14
  • Sprite shape

    Sprite shape 모양을 생성 한다. 이번 세션에서는 Snow board 를 주제로 하기 때문에 지형을 위해 생성했다. Edge sprite 와 Texture 에 각각의 자료를 넣은뒤 Edit Spline 은 shape 의 모양을 변경

    2023.03.13
  • day 8-3 python (페인트 면적 계산기)

    Instructions You are painting a wall. The instructions on the paint can says that 1 can of paint can cover 5 square meters of wall. Given a random height and width of wall, calculate how many cans of paint you'll need to buy. number of cans = (wall height x wall width) ÷ coverage per can. e.g. Height = 2, Width = 4, Coverage = 5 number of cans = (2 * 4) / 5 = 1.6 But because you can't buy 0.6 of..

    2023.03.10
  • day 8-2 python (위치와 키워드)

    위치 함수 ## 2개의 파라미터를 생성하고 출력 def greet_with(name,location): print(f"Hello {name}") print(f"What is it like in {location}") greet_with("kartejin", "Korea") ## Positional Argument ## 2개의 파라미터를 생성하고 출력 def greet_with(name,location): print(f"Hello {name}") print(f"What is it like in {location}") greet_with("Korea", "karatejin") 키워드 함수 ## Keywrod Arg def greet_with(name,location): print(f"Hello {name}"..

    2023.03.10
이전
1 2 3 4 5 6 ··· 54
다음
티스토리
© 2018 TISTORY. All rights reserved.

티스토리툴바