Compare commits
2 commits
0eee56f66c
...
55c86b22ef
Author | SHA1 | Date | |
---|---|---|---|
55c86b22ef | |||
fdebd1c9c5 |
6 changed files with 6 additions and 33 deletions
|
@ -1,17 +0,0 @@
|
|||
#[derive(GodotClass)]
|
||||
#[class(tool, init, editor_plugin, base=EditorPlugin)]
|
||||
|
||||
struct MiniEditorPlugin {
|
||||
base: Base<EditorPlugin>,
|
||||
}
|
||||
|
||||
#[godot_api]
|
||||
impl IEditorPlugin for MiniEditorPlugin {
|
||||
fn enter_tree(&mut self) {
|
||||
|
||||
}
|
||||
|
||||
fn exit_tree(&mut self) {
|
||||
|
||||
}
|
||||
}
|
|
@ -85,7 +85,7 @@ impl INode for Config {
|
|||
self.resolution_scale = config.get_value(GString::from("graphics"), GString::from("resolution_scale")).to::<f32>();
|
||||
}
|
||||
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);
|
||||
}
|
||||
}
|
|
@ -57,7 +57,6 @@ impl Manager {
|
|||
let editor_hint = Engine::singleton().is_editor_hint();
|
||||
if !editor_hint {
|
||||
let bgm = self.bgm.clone();
|
||||
godot_print!(" Hello world fj");
|
||||
let mut stream: Gd<AudioStreamOggVorbis> = load(bgm);
|
||||
stream.set_loop(false);
|
||||
let mut player = AudioStreamPlayer::new_alloc();
|
3
src/classes/mod.rs
Normal file
3
src/classes/mod.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
pub mod scrambling_text;
|
||||
pub mod manager;
|
||||
pub mod config;
|
|
@ -20,7 +20,6 @@ struct ScramblingText {
|
|||
time_since_scramble: f64, //[DOC] This is the variable used for measuring time since the letters have been scrambled
|
||||
time_since_step: f64, //[DOC] This is the variable used for measuring time since the amount of static letters was changed
|
||||
step_iterator: i32,
|
||||
editor_hint: bool,
|
||||
base: Base<Label>
|
||||
}
|
||||
|
||||
|
@ -45,14 +44,12 @@ impl ILabel for ScramblingText {
|
|||
step_iterator: 0, //[DOC] This is the iterator used for changing which letters to scramble
|
||||
time_since_scramble: 0.0,
|
||||
time_since_step: 0.0,
|
||||
editor_hint: editor_hint,
|
||||
base
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
fn set_property(&mut self, property: StringName, value: Variant) -> bool {
|
||||
// godot_print!("{:?}, {:?}", property, value);
|
||||
if property == StringName::from("scrambling") {
|
||||
let boolean_value = value.booleanize();
|
||||
let original_text = self.original_text.clone();
|
||||
|
@ -76,8 +73,6 @@ impl ILabel for ScramblingText {
|
|||
else {
|
||||
return false
|
||||
}
|
||||
|
||||
// Self::set_text(self, GString::from(self.original_text.clone().unwrap()))
|
||||
|
||||
}
|
||||
|
||||
|
@ -86,22 +81,16 @@ 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;
|
||||
|
||||
if !self.infinite && self.time_since_step >= duration {
|
||||
godot_print!("{}", original_text);
|
||||
self.time_since_step = 0.0;
|
||||
self.step_iterator += 1;
|
||||
}
|
|
@ -1,9 +1,8 @@
|
|||
use godot::{init::EditorRunBehavior, prelude::*};
|
||||
|
||||
struct MDT;
|
||||
mod scrambling_text;
|
||||
mod config;
|
||||
mod manager;
|
||||
|
||||
mod classes;
|
||||
|
||||
#[gdextension]
|
||||
unsafe impl ExtensionLibrary for MDT {
|
||||
|
|
Loading…
Reference in a new issue