diff --git a/src/config.rs b/src/config.rs index 40799ab..714d169 100644 --- a/src/config.rs +++ b/src/config.rs @@ -85,7 +85,7 @@ impl INode for Config { self.resolution_scale = config.get_value(GString::from("graphics"), GString::from("resolution_scale")).to::(); } if !editor_hint { - // THIS CHECK IS VERY IMPORTANT!!! I don't want to fuck my godot up again by resizing the editor and moving it out of bounds.. + // THIS CHECK IS VERY IMPORTANT!!! I don't want to screw my godot up again by resizing the editor and moving it out of bounds.. Self::apply_video_settings(self); } } diff --git a/src/scrambling_text.rs b/src/scrambling_text.rs index 00c372a..54f5264 100644 --- a/src/scrambling_text.rs +++ b/src/scrambling_text.rs @@ -76,8 +76,6 @@ impl ILabel for ScramblingText { else { return false } - - // Self::set_text(self, GString::from(self.original_text.clone().unwrap())) } @@ -86,17 +84,12 @@ impl ILabel for ScramblingText { self.original_text = Some(text.to_string()); } - - //TODO: THIS IS RETARDED:::::: PLEASE FIX BRUHHH - fn process(&mut self, delta: f64) { if self.scrambling { let original_text = self.original_text.clone().unwrap(); let duration = self.duration; let speed = self.speed; - // godot_print!("{}", Engine::singleton().is_editor_hint()); - self.time_since_scramble += delta; self.time_since_step += delta;