DgsCreateCircle

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

This function creates a circle shader that can be used for dgs elements.

Syntax

element dgsCreateCircle( [ float outsideRadius = 0.5, float insideRadius = 0.2, float angle = 360, int color = 0xFFFFFFFF, element texture = nil ] )
Example Circle Plugin

Optional Arguments

  • outsideRadius: A float of the outside radius of the circle.
  • insideRadius: A float of the inside radius of the circle.
  • angle: A float of the angle of the circle in degree.
  • color: An int of the color of the circle.
  • texture: A material element that you want to apply the circle to.

Returns

Returns a dgs-dxcircle (DGS Plugin Type)[ shader (Element Type) ] if succeed, false otherwise

Example

DGS = exports.dgs --get exported functions from dgs

local c = DGS:dgsCreateCircle(0.5,0.3)
local img = DGS:dgsCreateImage(300,200,200,200,c,false)
DGS:dgsCircleSetAngle(c,120)
DGS:dgsCircleSetDirection(c,false)

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

Plugin

Blur Box

Canvas

Chart

Circle

Color Picker

Effect 3D

Gradient

Mask

Media Browser

Nine Slice

Object Preview Supports

Paste Handler

QRCode

Remote Image

Rounded Rectangle

Screen Source

SVG

Tooltips