Fix GDScript code style regarding colon

This commit is contained in:
Danil Alexeev 2023-03-03 17:42:32 +03:00
parent 61d2c85511
commit ea5fd3d732
No known key found for this signature in database
GPG key ID: 124453E157DA8DC7
28 changed files with 74 additions and 72 deletions

View file

@ -6,21 +6,21 @@ var prop1:
prop1 = value
# Typed inline property
var prop2 : int:
var prop2: int:
get:
return prop2
set(value):
prop2 = value
# Typed inline property with default value
var prop3 : int = 1:
var prop3: int = 1:
get:
return prop3
set(value):
prop3 = value
# Typed inline property with backing variable
var _prop4 : int = 2
var _prop4: int = 2
var prop4: int:
get:
return _prop4