DgsRemoveEasingFunction

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function allow us to remove easing functions we created by dgsAddEasingFunction.

Syntax

bool dgsRemoveEasingFunction ( string name )

Required Arguments

  • name: The name of easing function to be removed.

Returns

Returns a true if succeed, false otherwise.

Example

DGS = exports.dgs

DGS:dgsAddEasingFunction("test",[[
	return math.abs(progress^2-0.5)*2
]]) --Add easing function named as "test"

parent = DGS:dgsCreateWindow(200,100,400,400,"DGS Parent Window",false)	--Create a window
DGS:dgsSetAlpha(parent,0)
DGS:dgsAlphaTo(parent,1,false,"test",2000)  --set animation with easing function that we added.

DGS:dgsRemoveEasingFunction("test") --Remove

DGS:dgsAlphaTo(parent,0,false,"test",2000)  --easing function "test" is no longer existing, and there will be set to "Linear" which is default.

See Also

Custom Cursor Functions

Multi Language Supports

Animation

3D Element

3D Interface

3D Line

3D Image

3D Text

Browser

Button

Check Box

Combo Box

Custom Renderer

Edit

Detect Area

Drag'N Drop

Grid List

Image

Memo

Menu

Label

Layout

Line

Progress Bar

Radio Button

Scale Pane

Scroll Bar

Scroll Pane

Selector

Style

Switch Button

Tab Panel

Window

Basic Shape Plugins

Circle

Quadrilateral

Rounded Rectangle

Other Plugins

Blur Box

Canvas

Chart

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Screen Source

SVG

Tooltips