Skip to content

Commit f357511

Browse files
committed
feat: essential operator bindings of primitive types
1 parent 246df83 commit f357511

File tree

3 files changed

+167
-12
lines changed

3 files changed

+167
-12
lines changed

typescripts/typings/godot0.gen.d.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9625,10 +9625,6 @@ declare module "godot" {
96259625
object_id_selected: Signal
96269626
selected: Signal
96279627
}
9628-
class EditorPropertyArray extends EditorProperty {
9629-
}
9630-
class EditorPropertyArrayObject extends RefCounted {
9631-
}
96329628
class EditorPropertyCheck extends EditorProperty {
96339629
}
96349630
class EditorPropertyColor extends EditorProperty {
@@ -11742,7 +11738,7 @@ declare module "godot" {
1174211738
}
1174311739
class GodotJSEditorPlugin extends EditorPlugin {
1174411740
}
11745-
class GodotJSREPL extends VBoxContainer {
11741+
class GodotJSREPL extends Control {
1174611742
}
1174711743
class GodotJSScript extends Script {
1174811744
}
@@ -12005,4 +12001,9 @@ declare module "godot" {
1200512001
// // godot.getset: title: string
1200612002
slot_updated: Signal
1200712003
}
12004+
class GridContainer extends Container {
12005+
set_columns(columns: number /*i64*/): void
12006+
get_columns(): number /*i64*/
12007+
// // godot.getset: columns: number /*i64*/
12008+
}
1200812009
}

typescripts/typings/godot1.gen.d.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
// AUTO-GENERATED
22
/// <reference no-default-lib="true"/>
33
declare module "godot" {
4-
class GridContainer extends Container {
5-
set_columns(columns: number /*i64*/): void
6-
get_columns(): number /*i64*/
7-
// // godot.getset: columns: number /*i64*/
8-
}
94
class GridMap extends Node3D {
105
static readonly INVALID_CELL_ITEM = -1
116
set_collision_layer(layer: number /*i64*/): void

0 commit comments

Comments
 (0)