You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
Initialize class/struct variables with default values in platform/ and editor/
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
|
||||
struct FloatConstantDef {
|
||||
String name;
|
||||
float value;
|
||||
float value = 0;
|
||||
String desc;
|
||||
};
|
||||
|
||||
@@ -4062,9 +4062,6 @@ void VisualShaderNodePortPreview::_notification(int p_what) {
|
||||
void VisualShaderNodePortPreview::_bind_methods() {
|
||||
}
|
||||
|
||||
VisualShaderNodePortPreview::VisualShaderNodePortPreview() {
|
||||
}
|
||||
|
||||
//////////////////////////////////
|
||||
|
||||
String VisualShaderConversionPlugin::converts_to() const {
|
||||
|
||||
Reference in New Issue
Block a user