개인 자료란 (JE)

  서버 커뮤니티

Profile HAN1110 대표칭호 없음

HAN1110 9899e780ba984d89824a90ee8deb7cb2

Profile

python

Python 으로 Minecraft 만들기 #8-1

2021.07.09 조회 수 340 추천 수 1

안녕하세요! HAN1110입니다!

오늘은 파이썬으로 마인크래프트를 만들어보겠습니다.

저번에 벽돌 텍스쳐를 넣었죠?

이번엔 두편에 나눠서

블럭 설치 & 파괴를 해볼겁니다.

이번편에서는 파괴만 해볼게요

from ursina import *
from ursina.prefabs.first_person_controller import FirstPersonController

app = Ursina()

player = FirstPersonController()


class Voxel(Button):
    def __init__(self, position=(0, 0, 0), texture='brick'):
        super().__init__(
            parent=scene,
            position=position,
            model='Asset/Cube/MoreCube/block.obj',
            origin_y=0.5,
            texture=texture,
            color=color.color(0, 0, random.uniform(0.9, 1.0)),
            scale=1.0
        )

for x in range(20):
    for z in range(20):
        voxel = Voxel(position=(x, 0, z))

app.run()

소스친구가 빠지면 안되겠죠?

그리고 이번엔 짧게 이렇게하져

def input(self, key):
    if self.hovered:
        if key == 'left mouse down':
            destroy(self)

신호를 받았을때(키(key) , 위치 정의(self))

 그 키가 왼쪽 마우스 클릭이라면

self 블럭을 파괴한다

라는 뜻이에요

그럼 다음편에선 블럭 설치를 해보죠. ㅂㅂ

Warning
댓글이 없습니다.

새로운 댓글을 등록해 주세요!

뉴스 및 창작물
/files/thumbnails/150/925/003/262x150.crop.jpg?20241123005717

건축

응답하라 1988 ?

팀뉴일리시

2024-11-23

4

/files/thumbnails/761/908/003/262x150.crop.jpg?20241025153749

건축

서울 숭례문(崇禮門) 5

KHC

2024-10-25

2

/files/thumbnails/578/899/003/262x150.crop.jpg?20241010142350

건축

경주 월정교 1

KHC

2024-10-10

2

/files/thumbnails/219/899/003/262x150.crop.jpg?20241009200950

건축

송전탑+도시 2

dbasd12

2024-10-09

2

/files/thumbnails/246/898/003/262x150.crop.jpg?20241008102328

레드스톤

단다단 - 오토노케(オトノケ) | 마인크래프트 노트블럭 커버

노트블럭전문가

2024-10-08

1