일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 사단장이 보고있다.
- youtube vanced설치
- 사단장이보고있다
- 테슬라공장
- 아듀이노 프로
- 포트웰
- 예능에서 효과
- 본전통 철당간
- 최상위PC
- 성안길 철당간
- 밴스드설치방법
- 인텍스 매치
- aa77
- 믄재인
- 청상추 삼겹살
- 밴스드 설치
- Alien
- 아듀이노 8
- 아무도 흔들 수 없는 나라
- 사운드 효과
- ads.txt 가 무었인가요
- 최고의PC
- index match
- 유튜브 밴스트 설치
- 청주 철당간
- UFO
- godot
- portwell
- 비듬나물 무침
- 유튜브모바일광고차단앱
- Today
- Total
목록Game publisher/GoDot Game Engine (6)
Dreams Come True Studio
고닷으로 만든 로또 번호 발생기 나눔로또 번호 발생기 클릭커 게임요소 추가 됐으며 자도 저장 기능이 있어 언제든지 진행해도 게임데이터가 사라지지 않는다. https://www.youtube.com/watch?v=eDgiQweNoVk&list=PLAN64leLGyG37O5G9xRyhqRAwZH0elSg5&index=16 https://play.google.com/store/apps/details?id=gotopark.mdct.lotto
extends Panel # Member variables here, example:# var a=2# var b="textvar" func _ready():# Initalization herepass func _on_goto_scene_pressed():get_tree().change_scene("res://scene_b.scn")pass # Replace with function body
고닷 스크립트 어레이 선언후 랜덤 숫자 집어 넣기이것 찾는데 너무 오래 걸렸다. var lotto1=Array()lotto1 = range(6)var lotto2 = [5]var suringfor i in range(0,lotto1.size()):lotto1[i] = randi() % 45 + 1print(lotto1[i])
Godot 3 스크립트 간단하게 sprite 이동에 관한 스크립트 extends Sprite export (int) var SPEEDvar velocity = Vector2()var screensize func _ready():screensize = get_viewport_rect().size func _process(delta):velocity =Vector2()if Input.is_action_just_pressed("ui_right"):velocity.x +=1if Input.is_action_just_pressed("ui_left"):velocity.x -=1if Input.is_action_just_pressed("ui_down"):velocity.y += 1if Input.is_action_j..