Skip to content

Latest commit

 

History

History
233 lines (138 loc) · 5.05 KB

script_brush.md

File metadata and controls

233 lines (138 loc) · 5.05 KB

Class: script_brush

Represents a script brush in the script window.

Table of contents

Constructors

Properties

Methods

Constructors

constructor

+ new script_brush(): script_brush

Returns: script_brush

Properties

on_left_click

on_left_click: callback<(brush: script_brush, event: script_brush_event) => void>

The function to call when the user left clicks the world with this brush


on_left_hold

on_left_hold: callback<(brush: script_brush, event: script_brush_event) => void>

The funciton to call when the user holds the left mouse button in the world with this brush


on_left_release

on_left_release: callback<(brush: script_brush, event: script_brush_event) => void>

The function to call when the user releases the left moues button in the world with this brush


on_right_click

on_right_click: callback<(brush: script_brush, event: script_brush_event) => void>

The function to call when the user right clicks the world with this brush


on_right_hold

on_right_hold: callback<(brush: script_brush, event: script_brush_event) => void>

The funciton to call when the user holds the right mouse button in the world with this brush


on_right_release

on_right_release: callback<(brush: script_brush, event: script_brush_event) => void>

The function to call when the user releases the right mouse button in the world with this brush

Methods

add_bool_tag

add_bool_tag(item: string, def: boolean): tag<boolean>

Adds a bool tag to the settings panel

Parameters:

Name Type
item string
def boolean

Returns: tag<boolean>


add_description

add_description(text: string): any

Adds a description row to the brush window

Parameters:

Name Type
text string

Returns: any


add_int_tag

add_int_tag(item: string, low: number, high: number, def: number): tag<number>

Adds an integer tag to the settings panel

Parameters:

Name Type
item string
low number
high number
def number

Returns: tag<number>


add_null_tag

add_null_tag(): any

Adds an empty tag, typically used to create empty lines in the settings panel

Returns: any


add_real_tag

add_real_tag(item: string, low: number, high: number, def: number): tag<number>

Adds a real (i.e. float) tag to the settings panel

Parameters:

Name Type
item string
low number
high number
def number

Returns: tag<number>


add_string_list_tag

add_string_list_tag(item: string, ...values: string[]): tag<string>

Adds a dropdown menu to the settings panel

Parameters:

Name Type
item string
...values string[]

Returns: tag<string>


add_string_tag

add_string_tag(item: string, def: string): tag<string>

Adds a string tag to the settings panel

Parameters:

Name Type
item string
def string

Returns: tag<string>


get_name

get_name(): string

Returns the current name of this script brush

Returns: string


set_name

set_name(name: string): void

Changes the name of this script brush

Parameters:

Name Type
name string

Returns: void