Enum gdnative_visual_script::common::init::PropertyHint[]

pub enum PropertyHint<'l> {
    None,
    Range {
        range: Range<f64>,
        step: f64,
        slider: bool,
    },
    Enum {
        values: &'l [&'l str],
    },
    Flags {
        values: &'l [&'l str],
    },
    NodePathToEditedNode,
}

Variants

Fields of Range

Fields of Enum

Fields of Flags

Methods

impl<'l> PropertyHint<'l>

Auto Trait Implementations

impl<'l> Send for PropertyHint<'l>

impl<'l> Sync for PropertyHint<'l>