Register missing WebRTCDataChannelJS type

(cherry picked from commit a413656e07)
This commit is contained in:
mj.Jernigan 2021-11-16 21:05:59 -07:00 committed by Rémi Verschelde
parent 63f35d24c6
commit 022cbeb192
2 changed files with 3 additions and 1 deletions

View File

@ -58,7 +58,7 @@ void WebRTCPeerConnectionJS::_on_error(void *p_obj) {
void WebRTCPeerConnectionJS::_on_data_channel(void *p_obj, int p_id) {
WebRTCPeerConnectionJS *peer = static_cast<WebRTCPeerConnectionJS *>(p_obj);
peer->emit_signal("data_channel_received", Ref<WebRTCDataChannelJS>(new WebRTCDataChannelJS(p_id)));
peer->emit_signal("data_channel_received", Ref<WebRTCDataChannel>(memnew(WebRTCDataChannelJS(p_id))));
}
void WebRTCPeerConnectionJS::close() {

View File

@ -52,6 +52,8 @@ extern int godot_js_rtc_pc_datachannel_create(int p_id, const char *p_label, con
}
class WebRTCPeerConnectionJS : public WebRTCPeerConnection {
GDCLASS(WebRTCPeerConnectionJS, WebRTCPeerConnection);
private:
int _js_id;
ConnectionState _conn_state;