This commit is contained in:
Rendo 2025-07-25 18:15:20 +05:00
commit 65fe0e5c5d
14 changed files with 30 additions and 33 deletions

9
scripts/Newlon.cs Normal file
View file

@ -0,0 +1,9 @@
namespace Newlon;
public static class LON
{
public static float Pr(string path)
{
return 0;
}
}

1
scripts/Newlon.cs.uid Normal file
View file

@ -0,0 +1 @@
uid://bkr8vxejk4n2u

View file

@ -1,17 +0,0 @@
using System.Collections.Generic;
using Godot;
using Newlon;
public partial class PlayerProgress : Node
{
public static PlayerProgress Instance { get; private set; }
public override void _EnterTree()
{
Instance = this;
}
public List<PlantResource> PlayerPlants { get; set; } = new();
public int MaxSeedpackets = 9;
public int Money { get; set; }
}

View file

@ -1,12 +0,0 @@
using Godot;
using System;
public partial class ScalableAudioPlayer : AudioStreamPlayer
{
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
if(PitchScale != (float)Engine.TimeScale)
PitchScale = (float)Engine.TimeScale * (float)Engine.TimeScale;
}
}

View file

@ -1 +0,0 @@
uid://wfjsgbg3fekl

View file

@ -0,0 +1,17 @@
using System.Collections.Generic;
using Godot;
using Newlon;
public partial class PlayerProgress : Node
{
public static PlayerProgress Instance { get; private set; }
public override void _EnterTree()
{
Instance = this;
}
public List<PlantResource> PlayerPlants { get; set; } = new();
public int MaxSeedpackets = 9;
public int Money { get; set; }
}