Struct roblox::instance::StarterGui [−][src]
pub struct StarterGui<'a> {}Show 18 fields
pub process_user_input: bool, pub screen_orientation: ScreenOrientation, pub show_development_gui: bool, pub virtual_cursor_mode: VirtualCursorMode, pub archivable: bool, pub class_name: &'a str, pub name: &'a str, pub parent: Option<InstanceRef>, pub roblox_locked: bool, pub source_asset_id: i64, pub core_gui_changed_signal: RBXScriptSignal<(CoreGuiType, bool)>, pub ancestry_changed: RBXScriptSignal<(Option<InstanceRef>, Option<InstanceRef>)>, pub attribute_changed: RBXScriptSignal<&'a str>, pub changed: RBXScriptSignal<&'a str>, pub child_added: RBXScriptSignal<Option<InstanceRef>>, pub child_removed: RBXScriptSignal<Option<InstanceRef>>, pub descendant_added: RBXScriptSignal<Option<InstanceRef>>, pub descendant_removing: RBXScriptSignal<Option<InstanceRef>>,
Expand description
The StarterGui Instance Class
Fields
process_user_input: bool
screen_orientation: ScreenOrientation
show_development_gui: bool
virtual_cursor_mode: VirtualCursorMode
archivable: bool
Inherited from Instance
class_name: &'a str
Inherited from Instance
name: &'a str
Inherited from Instance
parent: Option<InstanceRef>
Inherited from Instance
roblox_locked: bool
Inherited from Instance
source_asset_id: i64
Inherited from Instance
core_gui_changed_signal: RBXScriptSignal<(CoreGuiType, bool)>
ancestry_changed: RBXScriptSignal<(Option<InstanceRef>, Option<InstanceRef>)>
Inherited from Instance
attribute_changed: RBXScriptSignal<&'a str>
Inherited from Instance
changed: RBXScriptSignal<&'a str>
Inherited from Instance
child_added: RBXScriptSignal<Option<InstanceRef>>
Inherited from Instance
child_removed: RBXScriptSignal<Option<InstanceRef>>
Inherited from Instance
descendant_added: RBXScriptSignal<Option<InstanceRef>>
Inherited from Instance
descendant_removing: RBXScriptSignal<Option<InstanceRef>>
Inherited from Instance
Implementations
pub fn register_get_core(
&self,
parameter_name: &'a str,
get_function: &'a dyn Fn(&'static [Variant<'a, ()>]) -> Array<Variant<'a, ()>>
)
pub fn register_set_core(
&self,
parameter_name: &'a str,
set_function: &'a dyn Fn(&'static [Variant<'a, ()>]) -> Array<Variant<'a, ()>>
)
Inherited from BasePlayerGui
Inherited from BasePlayerGui
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
pub fn find_first_child_which_is_a(
&self,
class_name: &'a str,
recursive: bool
) -> Option<InstanceRef>
pub fn find_first_child_which_is_a(
&self,
class_name: &'a str,
recursive: bool
) -> Option<InstanceRef>
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Inherited from Instance
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<'a> RefUnwindSafe for StarterGui<'a>
impl<'a> Send for StarterGui<'a>
impl<'a> Sync for StarterGui<'a>
impl<'a> Unpin for StarterGui<'a>
impl<'a> UnwindSafe for StarterGui<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more