목록일상/개발일상 (39)
[게임개발자] 레드핑
https://www.youtube.com/watch?v=-xv9yRlr9cE&t=313s
https://github.com/CoaguCo-Industries/GodotSteam-Example-Project/blob/godot3/example/src/examples/lobby.gd 중에서 메서드가 있다 . 집에가서 파악해서 제작해보자.
이제 Lobby List 를 제작해야하는데, 친구초대 해서 게임을 시작하는 형식으로 할거라 현재 고민중
한 3일동안 생각했는데, Steam Join 버튼 제작 성공!
https://www.youtube.com/watch?v=-xv9yRlr9cE&t=313s part2 로직 참고와 GodotSteam 공식문서의 https://godotsteam.com/tutorials/friends_lobbies/ Friends'Lobbies 를 참고하여 로비 create 까지 만든 상황 Friends' Lobbies - GodotSteam Tutorials - Friends' Lobbies In this quick tutorial we will cover how to get a dictionary of any lobbies belonging to friends that are visible to the user. This was created as it's a pretty commo..
결과만 이야기하자면 성공! 친구가져오기 extends Control # Called when the node enters the scene tree for the first time. func _ready(): pass # Replace with function body. # Called every frame. 'delta' is the elapsed time since the previous frame. func _process(delta): pass func _on_button_button_down(): for friend in Steam.getUserSteamFriends() : print(friend.name) 코드는 이렇게다. Steam 을 가져오는건 godot steam 의 docs 의 ini..