contextless gaming

This commit is contained in:
iris committed 2025-08-25 19:21:39 -04:00
1 parent e8b255c8f9
commit e9037cdc14
6 files changed
+27 -46

No files matched your search

+1 -9
View File
@@ -43,6 +43,7 @@ pub struct SenseTrigger {
pub shape: SenseShape,
pub sense: Sense,
}
#[derive(Default)]
pub struct SensorGroup {
pub hover: ActivationState,
pub cursor: ActivationState,
@@ -134,15 +135,6 @@ impl ActivationState {
}
}
impl Default for SensorGroup {
fn default() -> Self {
Self {
hover: Default::default(),
cursor: Default::default(),
sensors: Default::default(),
}
}
}
impl Clone for SensorGroup {
fn clone(&self) -> Self {
Self {