User contributions for Thisdp
Jump to navigation
Jump to search
6 February 2022
- 12:5012:50, 6 February 2022 diff hist −1 Template:DGSFUNCTIONS →Canvas
- 12:4912:49, 6 February 2022 diff hist +199 N Template:DGS Plugin/SVG Created page with " *dgsCreateSVG *dgsSVGGetContent *dgsSVGCreateNode *dgsSVGDestroyNode *dgsSVGNodeSetAttribute *dgsSVGNodeGetAttribute *dgsSVGNodeSetAttributes *dgsSVGNodeGetAttributes"
- 12:4812:48, 6 February 2022 diff hist +268 N Template:DGS Plugin/Chart Created page with "*dgsCreateChart *dgsChartAddDataset *dgsChartRemoveDataset *dgsChartSetLabels *dgsChartDatasetSetStyle *dgsChartDatasetSetLabel *dgsChartDatasetSetData *dgsChartDatasetAddData *dgsChartDatasetRemoveData *dgsChartDatasetClearData" current
- 12:4712:47, 6 February 2022 diff hist +113 Template:DGSFUNCTIONS →Plugin
4 February 2022
- 04:1104:11, 4 February 2022 diff hist +93 Template:DGS Edit Functions No edit summary
3 February 2022
- 17:0217:02, 3 February 2022 diff hist +173 Dgs-dxscrollpane →moveHardness
- 16:5916:59, 3 February 2022 diff hist +171 Dgs-dxgridlist →moveHardness
1 February 2022
- 07:4707:47, 1 February 2022 diff hist +44 Template:Client world functions No edit summary
- 07:1907:19, 1 February 2022 diff hist +2,165 DgsCreateCustomRenderer →Optional Arguments
- 07:1607:16, 1 February 2022 diff hist +18 DgsCreateCustomRenderer →Optional Arguments
- 07:1607:16, 1 February 2022 diff hist −6 DgsCreateCustomRenderer →Optional Arguments
- 07:1507:15, 1 February 2022 diff hist +236 DgsCreateCustomRenderer →Optional Arguments
31 January 2022
- 14:1414:14, 31 January 2022 diff hist +1,056 N OnDgsMouseHover Created page with "{{Client event}} __NOTOC__ This event will be triggered continuously when a dgs element is being hovered. ==Parameters== <syntaxhighlight lang="lua"> int tick, int absoluteX, int absoluteY </syntaxhighlight> * '''tick''': A number indicates how long the dgs element has been hovered in millisecond. * '''absoluteX''': The X position of the mouse cursor, in pixels, measured from the left side of the screen. * '''absoluteY''': The Y position of the mouse cursor, in pix..." current
- 12:2812:28, 31 January 2022 diff hist +21 Template:DGS Events/Mouse No edit summary
29 January 2022
- 06:1706:17, 29 January 2022 diff hist +7 DgsCreateScrollBar →Example current
- 06:1606:16, 29 January 2022 diff hist +151 DgsCreateScrollBar →Example
24 January 2022
- 04:4104:41, 24 January 2022 diff hist −1,290 Resource:DGS →Features Tag: Reverted
22 January 2022
- 10:1710:17, 22 January 2022 diff hist +340 Dgs-dxedit No edit summary
18 January 2022
- 15:3715:37, 18 January 2022 diff hist +282 Dgs-dxcombobox No edit summary
- 15:3615:36, 18 January 2022 diff hist +619 Dgs-dxgridlist No edit summary
- 15:3315:33, 18 January 2022 diff hist +117 Template:DGS Combo Box Functions No edit summary
13 January 2022
- 14:5414:54, 13 January 2022 diff hist +1,892 DGS Updates Log No edit summary
25 December 2021
- 15:0115:01, 25 December 2021 diff hist +295 DGS General Basic Properties No edit summary
22 December 2021
- 15:0415:04, 22 December 2021 diff hist +94 N Template:DGS Layout Functions Created page with "*dgsCreateLayout *dgsLayoutAddItem *dgsLayoutRemoveItem *dgsLayoutGetItemIndex" current
- 15:0415:04, 22 December 2021 diff hist +115 Template:DGSFUNCTIONS →Label
20 December 2021
- 02:4802:48, 20 December 2021 diff hist −17 DgsSetClickingSoundVolume No edit summary current
- 02:4702:47, 20 December 2021 diff hist −1 DgsEditGetTypingSoundVolume No edit summary current
- 02:4702:47, 20 December 2021 diff hist −17 DgsEditSetTypingSoundVolume →Syntax current
- 02:4702:47, 20 December 2021 diff hist −1 DgsGetClickingSoundVolume →Syntax current
- 02:4602:46, 20 December 2021 diff hist +724 N DgsGetClickingSoundVolume Created page with "{{Client function}} __NOTOC__ This function gets the volume of the clicking sound of a dgs element ==Syntax== <syntaxhighlight lang="lua"> number dgsGetClickingSoundVolume( element dgsElement ) </syntaxhighlight> ===Required Arguments=== *'''dgsElement:''' The dgs element you want to set. ===Returns=== Returns a ''float'' indicates the volume of the clicking sound if succeed, ''false'' otherwise. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs btn = DG..."
- 02:4502:45, 20 December 2021 diff hist +838 N DgsSetClickingSoundVolume Created page with "{{Client function}} __NOTOC__ This function changes the volume of the clicking sound to a dgs element. ==Syntax== <syntaxhighlight lang="lua"> bool dgsSetClickingSoundVolume( element dgsElement, number volume ) </syntaxhighlight> ===Required Arguments=== *'''dgsElement:''' The dgs element you want to set. *'''volume:''' A floating point number representing the desired clicking sound volume level. Range is from 0.0 to 1.0. This can go above 1.0 for amplification. ===..."
- 02:4402:44, 20 December 2021 diff hist +694 N DgsGetClickingSound Created page with "{{Client function}} __NOTOC__ This function gets the clicking sound that has already been applied. ==Syntax== <syntaxhighlight lang="lua"> string dgsGetClickingSound( element dgsElement ) </syntaxhighlight> ===Required Arguments=== *'''dgsElement:''' The dgs element you want to get from. ===Returns=== Returns a string if there is a clicking sound applied, ''false'' otherwise. ==Example== <syntaxhighlight lang="lua"> DGS = exports.dgs btn = DGS:dgsCreateButton(0.2..." current
- 02:4402:44, 20 December 2021 diff hist +5 DgsEditSetTypingSound No edit summary current
- 02:4302:43, 20 December 2021 diff hist +5 DgsEditGetTypingSound No edit summary current
- 02:4202:42, 20 December 2021 diff hist +714 N DgsSetClickingSound Created page with "{{Client function}} __NOTOC__ This function applies a clicking sound to a dgs element. ==Syntax== <syntaxhighlight lang="lua"> bool dgsSetClickingSound( element dgsElement, string soundPath ) </syntaxhighlight> ===Required Arguments=== *'''dgsElement:''' The dgs element you want to apply to. *'''soundPath :''' A string of the path of the sound ( url is supported ) '''nil for disabled''' ===Returns=== Returns ''true'' if succeed, ''false'' otherwise. ==Example== <sy..." current
9 December 2021
- 06:4906:49, 9 December 2021 diff hist +315 Dgs-dx3dtext →textSize current
- 06:0706:07, 9 December 2021 diff hist +364 Dgs-dx3dtext →canBeBlocked
- 06:0606:06, 9 December 2021 diff hist +573 Dgs-dx3dimage →interior current
- 06:0606:06, 9 December 2021 diff hist +567 Dgs-dx3dtext →interior
2 December 2021
- 18:3118:31, 2 December 2021 diff hist +134 Template:DGS Plugin/Effect 3D No edit summary current
21 November 2021
- 05:0405:04, 21 November 2021 diff hist +25 Template:DGS Events/General No edit summary
- 05:0305:03, 21 November 2021 diff hist +90 Template:DGS General Functions No edit summary
- 04:3304:33, 21 November 2021 diff hist +25 DgsGradientSetColorOverwritten No edit summary current
- 04:3204:32, 21 November 2021 diff hist −96 DgsGradientGetColorOverwritten No edit summary current
- 04:2804:28, 21 November 2021 diff hist 0 DgsGradientSetColorOverwritten No edit summary
- 04:2804:28, 21 November 2021 diff hist +1,039 N DgsGradientSetColorOverwritten Created page with "__NOTOC__ {{Client function}} This function sets whether the color of gradient will overwrite the color of dx functions. ==Syntax== <syntaxhighlight lang="lua"> bool dgsGradientGetColorOverwritten( element gradient, bool isOverwritten ) </syntaxhighlight> ===Required Arguments=== *'''gradient:''' A dgs gradient element. *'''isOverwritten:''' A bool of the the overwritten state of the gradient (Set to ''false'' to use dx draw's color, set to ''true'' to force shader..."
- 04:2804:28, 21 November 2021 diff hist +1,039 N DgsGradientGetColorOverwritten Created page with "__NOTOC__ {{Client function}} This function sets whether the color of gradient will overwrite the color of dx functions. ==Syntax== <syntaxhighlight lang="lua"> bool dgsGradientGetColorOverwritten( element gradient, bool isOverwritten ) </syntaxhighlight> ===Required Arguments=== *'''gradient:''' A dgs gradient element. *'''isOverwritten:''' A bool of the the overwritten state of the gradient (Set to ''false'' to use dx draw's color, set to ''true'' to force shader..."
- 04:2404:24, 21 November 2021 diff hist +81 DgsCreateGradient →Required Arguments current
- 04:2304:23, 21 November 2021 diff hist 0 N File:DGS Gradient.png No edit summary current
- 04:2204:22, 21 November 2021 diff hist +66 DgsCreateGradient No edit summary