diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-06-29 12:28:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-29 12:28:30 +0200 |
commit | 52355c638b03ff9316ee3f39e32ac968252489d3 (patch) | |
tree | cabf1815270f0b415c3640e680ef40535793dae5 /modules/webrtc | |
parent | e222e31fe633f6b4ae0abbc3cb2fb6a80ad2f9cd (diff) | |
parent | 0c4c36d823bb6792917dfac86491f61cec3f9b27 (diff) |
Merge pull request #29380 from bojidar-bg/16086-docs-default-value
Add default values to the editor help, docs, and generated RST
Diffstat (limited to 'modules/webrtc')
-rw-r--r-- | modules/webrtc/webrtc_data_channel_gdnative.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/webrtc/webrtc_data_channel_gdnative.cpp b/modules/webrtc/webrtc_data_channel_gdnative.cpp index 4f33491af2..6362634626 100644 --- a/modules/webrtc/webrtc_data_channel_gdnative.cpp +++ b/modules/webrtc/webrtc_data_channel_gdnative.cpp @@ -35,6 +35,7 @@ #include "modules/gdnative/nativescript/nativescript.h" void WebRTCDataChannelGDNative::_bind_methods() { + ADD_PROPERTY_DEFAULT("write_mode", WRITE_MODE_BINARY); } WebRTCDataChannelGDNative::WebRTCDataChannelGDNative() { |