Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 583e9f0

Browse files
committed
Small changes for playtesting
1 parent 3c137e0 commit 583e9f0

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

project.godot

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,5 @@ e={
4949
[rendering]
5050

5151
textures/canvas_textures/default_texture_filter=0
52+
environment/defaults/default_clear_color=Color(0, 0, 0, 1)
5253
anti_aliasing/quality/msaa_2d=1

scenes/levels/ExampleScene.tscn

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15125,7 +15125,7 @@ _darknessCircleDamage = 1
1512515125
_allyHealthChangeIntervall = 5.0
1512615126

1512715127
[node name="Ally" parent="." node_paths=PackedStringArray("_responseField", "_nameLabel", "Chat", "_animPlayer") instance=ExtResource("6_l8h37")]
15128-
position = Vector2(-3064, -8775)
15128+
position = Vector2(937, 2122)
1512915129
_responseField = NodePath("ResponseField")
1513015130
_nameLabel = NodePath("Label")
1513115131
_visionRadius = 300
@@ -15226,7 +15226,7 @@ shadow_filter_smooth = 2.3
1522615226
texture_scale = 14.0
1522715227

1522815228
[node name="Ally2" parent="." node_paths=PackedStringArray("_responseField", "_nameLabel", "Chat", "_animPlayer") groups=["navigation"] instance=ExtResource("6_l8h37")]
15229-
position = Vector2(7410, -6307)
15229+
position = Vector2(179, 2125)
1523015230
_responseField = NodePath("ResponseField")
1523115231
_nameLabel = NodePath("Label")
1523215232
_visionRadius = 200
@@ -15748,14 +15748,12 @@ button_group = ExtResource("31_rop2t")
1574815748
text = "Ally 1"
1574915749

1575015750
[node name="IntroScene" parent="." node_paths=PackedStringArray("_ally") instance=ExtResource("32_bdur0")]
15751-
visible = false
1575215751
z_index = 1000
1575315752
offset_left = -633.0
1575415753
offset_top = 1955.0
1575515754
offset_right = 1457.0
1575615755
offset_bottom = 2618.0
1575715756
_ally = NodePath("../Ally")
15758-
_enableIntroScene = false
1575915757

1576015758
[node name="Landscape" type="Control" parent="."]
1576115759
visible = false
@@ -16001,7 +15999,6 @@ offset_left = 536.0
1600115999
offset_top = 898.0
1600216000
offset_right = 536.0
1600316001
offset_bottom = 898.0
16004-
_enableTutorial = false
1600516002

1600616003
[node name="Tombstone" parent="." instance=ExtResource("13_05imv")]
1600716004
position = Vector2(3836, -1047)

scripts/AI/GeminiService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public GeminiService(string apiKeyFilePath, string systemPrompt) // Add systemPr
3434
try
3535
{
3636
// Read the API key from the file, trimming any whitespace
37-
string apiKey = File.ReadAllText(apiKeyFilePath).Trim();
37+
string apiKey = "AIzaSyDYBjAspBa9JOqs6d0hrsiF0COtXnm3HGw";
3838
if (string.IsNullOrEmpty(apiKey))
3939
{
4040
throw new InvalidOperationException("API key file is empty");

0 commit comments

Comments
 (0)