일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 본전통 철당간
- 비듬나물 무침
- godot
- 사단장이보고있다
- 청상추 삼겹살
- 아듀이노 프로
- 성안길 철당간
- 밴스드설치방법
- aa77
- 아듀이노 8
- 밴스드 설치
- Alien
- 사단장이 보고있다.
- 청주 철당간
- 최상위PC
- 예능에서 효과
- 인텍스 매치
- 테슬라공장
- 유튜브모바일광고차단앱
- ads.txt 가 무었인가요
- youtube vanced설치
- 유튜브 밴스트 설치
- portwell
- 최고의PC
- 믄재인
- 사운드 효과
- UFO
- 포트웰
- 아무도 흔들 수 없는 나라
- index match
- Today
- Total
목록분류 전체보기 (82)
Dreams Come True Studio
iptables -I INPUT -p tcp -m tcp --dport 4578 -j ACCEPTiptables -A INPUT -p tcp --dport 4578 -j ACCEPT
bin\android_release.apk Debug template (used when exporting with “Debugging Enabled” ON)C:\godot> scons platform=android target=release_debug C:\godot> cd platform/android/java C:\godot\platform\android\java> gradlew build The resulting APK is in:http://docs.godotengine.org/en/latest/development/compiling/compiling_for_x11.html bin\android_debug.apk
김어준 뉴스공장 MB 돈 찾기 계모임 "플랜다스의 계" = Plan + DAS + 계 안홍구 전 대구국세청장 다스주매입 국민운동 벌이고 있습니다. 헐~ 다스 한주가 백 40만원 쪼개고 쪼개서 시민이 참여하는 계모임 "플랜다스의 계" 참여해주십시오~ 다스 주식 삽니다. 3% 다스의 의결권을 가질수 있습니다. http://showmethemoney.or.kr/ 저는 이렇게도 참여 했습니다. 앱에다 다스는 누구겁니까 넣었습니다. https://play.google.com/store/apps/details?id=gotopark.buster.lottogen
고닷으로 만든 로또 번호 발생기 나눔로또 번호 발생기 클릭커 게임요소 추가 됐으며 자도 저장 기능이 있어 언제든지 진행해도 게임데이터가 사라지지 않는다. https://www.youtube.com/watch?v=eDgiQweNoVk&list=PLAN64leLGyG37O5G9xRyhqRAwZH0elSg5&index=16 https://play.google.com/store/apps/details?id=gotopark.mdct.lotto
고닷 게임 엔진 커스터 마이징 고닷 stable 소스https://github.com/godotengine/godot/releases FireBase Modules for admobhttps://github.com/FrogSquare/GodotFireBase OS 별 dependence Debian / Ubuntusudo apt-get install build-essential scons pkg-config libx11-dev libxcursor-dev libxinerama-dev \ libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libfreetype6-dev libssl-dev libudev-dev \ libxrandr-devFedorasudo dnf..
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
InputEventNONEEmpty Input Event.InputEventKeyKEYContains a scancode and unicode value, as well as modifiers.InputEventMouseButtonMOUSE_BUTTONContains click information, such as button, modifiers, etc.InputEventMouseMotionMOUSE_MOTIONContains motion information, such as relative, absolute positions and speed.InputEventJoystickMotionJOYSTICK_MOTIONContains Joystick/Joypad analog axis information.I..
고닷 스크립트 어레이 선언후 랜덤 숫자 집어 넣기이것 찾는데 너무 오래 걸렸다. 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..