diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-06-11 15:19:07 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-09-25 09:34:35 -0500 |
commit | 9f9ee0c813443333a49c797083ff456629c009fb (patch) | |
tree | 36dbb6cd89f1b81eaf7940a2d097dc77e55a7f61 /modules/godot_physics_3d | |
parent | 0a9d8f04c10870c0f9f7bbd2e0505edc8494e299 (diff) | |
download | redot-engine-9f9ee0c813443333a49c797083ff456629c009fb.tar.gz |
SCons: Add unobtrusive type hints in SCons files
Diffstat (limited to 'modules/godot_physics_3d')
-rw-r--r-- | modules/godot_physics_3d/SCsub | 3 | ||||
-rw-r--r-- | modules/godot_physics_3d/joints/SCsub | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/modules/godot_physics_3d/SCsub b/modules/godot_physics_3d/SCsub index 41a59cd24e..1502eb39ee 100644 --- a/modules/godot_physics_3d/SCsub +++ b/modules/godot_physics_3d/SCsub @@ -1,6 +1,7 @@ #!/usr/bin/env python +from misc.utility.scons_hints import * -Import('env') +Import("env") env.add_source_files(env.modules_sources, "*.cpp") diff --git a/modules/godot_physics_3d/joints/SCsub b/modules/godot_physics_3d/joints/SCsub index 5d93da5ecf..39eb469978 100644 --- a/modules/godot_physics_3d/joints/SCsub +++ b/modules/godot_physics_3d/joints/SCsub @@ -1,5 +1,6 @@ #!/usr/bin/env python +from misc.utility.scons_hints import * -Import('env') +Import("env") env.add_source_files(env.modules_sources, "*.cpp") |