소개
소개글이 비어있어요
게시글
질문&답변
2024.07.04
투사체 서버 판정 질문입니다
맞는지는 모르겠는데 포톤 같은 경우에는 전프레임 투사체 위치(서버 프레임), 후 프레임 투사체 위치 사이에 충돌체를 만들어서 체크 하는것 같았어요, 투사체(로켓탄 타입) 이 아닌 경우에는 사실상 1프레임 ray처리를 하는 것으로 알고 있습니다
- 0
- 2
- 209
질문&답변
2023.10.25
에러가 발생합니다..
연결하고 바로 연결을 끊는 경우 발생합니다. 아래 python 코드로 테스트 해보시면 됩니다.import socket def check_tcp_connection(ip, port): try: # Create a new socket using the given IP and port with socket.create_connection((ip, port), timeout=5) as s: print(f"Successfully connected to {ip} on port {port}") except socket.error as e: print(f"Failed to connect to {ip} on port {port}. Error: {e}") if __name__ == "__main__": target_ip = "your ip" target_port = int("7777") check_tcp_connection(target_ip, target_port)
- 0
- 2
- 4.4K