Merge pull request #62651 from akien-mga/webrtc-register-peerconntectionjs
Register missing WebRTCDataChannelJS type
This commit is contained in:
commit
e16242b73b
|
@ -57,7 +57,7 @@ void WebRTCPeerConnectionJS::_on_error(void *p_obj) {
|
||||||
|
|
||||||
void WebRTCPeerConnectionJS::_on_data_channel(void *p_obj, int p_id) {
|
void WebRTCPeerConnectionJS::_on_data_channel(void *p_obj, int p_id) {
|
||||||
WebRTCPeerConnectionJS *peer = static_cast<WebRTCPeerConnectionJS *>(p_obj);
|
WebRTCPeerConnectionJS *peer = static_cast<WebRTCPeerConnectionJS *>(p_obj);
|
||||||
peer->emit_signal(SNAME("data_channel_received"), Ref<WebRTCDataChannelJS>(new WebRTCDataChannelJS(p_id)));
|
peer->emit_signal(SNAME("data_channel_received"), Ref<WebRTCDataChannel>(memnew(WebRTCDataChannelJS(p_id))));
|
||||||
}
|
}
|
||||||
|
|
||||||
void WebRTCPeerConnectionJS::close() {
|
void WebRTCPeerConnectionJS::close() {
|
||||||
|
|
|
@ -52,6 +52,8 @@ extern int godot_js_rtc_pc_datachannel_create(int p_id, const char *p_label, con
|
||||||
}
|
}
|
||||||
|
|
||||||
class WebRTCPeerConnectionJS : public WebRTCPeerConnection {
|
class WebRTCPeerConnectionJS : public WebRTCPeerConnection {
|
||||||
|
GDCLASS(WebRTCPeerConnectionJS, WebRTCPeerConnection);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
int _js_id;
|
int _js_id;
|
||||||
ConnectionState _conn_state;
|
ConnectionState _conn_state;
|
||||||
|
|
Loading…
Reference in New Issue