aboutsummaryrefslogtreecommitdiff
path: root/platform/javascript/power_javascript.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-10-23[DOCS] @GlobalScopemhilbrunner1-4/+150
2017-10-23added some arvr docsGrosskopf5-0/+10
2017-10-23Added various docs, mostly mathematical basicsGrosskopf7-64/+85
2017-10-23[DOCS] EditorScript: Small formatting fixesmhilbrunner1-2/+2
2017-10-23[DOCS] Stringmhilbrunner1-59/+84
2017-10-22[DOCS] ParallaxBackground and ParallaxLayerJerome670002-2/+12
2017-10-22Partially undo #11807.Ferenc Arn1-2/+2
Specular light at zero roughness needs some discussion. Until we do that, this fixes #12309.
2017-10-22Fix set field from MonoObject*Ignacio Etcheverry2-9/+9
2017-10-22Many fixes to SSAO, should be good now.Juan Linietsky12-44/+212
2017-10-22Add WindowsTerminalLogger to UWP buildGeorge Marques1-0/+1
2017-10-22classref: Sync with current sourceRémi Verschelde75-225/+240
Also fix hyperlink references to same class as per the guidelines. [ci skip]
2017-10-22Added description to Audio Filter EffectsHenrique Campos6-0/+16
Also doccumented Filter member variables and methods. [ci skip]
2017-10-22Added descriptions to some members of Camera2DStephen Ednave1-1/+6
2017-10-22Change theme button name to edit themeAlexander Holland1-1/+5
[ci skip]
2017-10-22Bind MainLoop.notif_wm_go_back_requestPoommetee Ketson1-0/+1
2017-10-22updated the TabContainer docs for depth and readability.Will Nations1-19/+25
2017-10-22AudioEffectFilter: lowercase dB property to dbPoommetee Ketson1-1/+1
2017-10-22CubeMap: fix duplicate flags propertyPoommetee Ketson1-1/+0
2017-10-22FileDialog: enlarge the file list a bitPoommetee Ketson2-27/+37
2017-10-22Fix TileMap editor not getting inputPedro J. Estébanez1-1/+1
Fixes #12265.
2017-10-21Don't add clearcoat BRDF to specular light as-is.Ferenc Arn1-4/+6
BRDF needs to be multiplied with N.L, the incoming light and attenuation. Also specular_blob_intensity should affect clearcoat.
2017-10-21Rename Schlick GGX to GGX.Ferenc Arn6-11/+11
Schlick's approximation and GGX are orthogonal concepts. Furthermore, it's usage so far has been inconsistent: we don't even use it with anisotropic SchlickGGX, and Burley (Disney) diffuse does use it while its name doesn't indicate it. The use of Schlick's approximation in Burley and GGX is an implementation detail and doesn't need to be reflected to the namig.
2017-10-21Fixed current line highlighting and visual indication of empty selected linesPaulb231-6/+22
2017-10-21Rename RayCasts collision_layer to collision_maskPedro J. Estébanez10-77/+77
The point is that `RayCast`s are checked against objects' `collision_layer`(s), but they themselves are considered no to _belong_ to any layer. Therefore, the correct name for their property is `collision_mask`, rather than `collision_layer`. Only renaming is needed since the behavior was already the right one, only that it wasn't matching what users would expect from the name and description of the property. Fixes #7589, where it's also discussed.
2017-10-22Bind unbound enums, rearrange some by valuePoommetee Ketson19-22/+25
2017-10-21Cleanup unnecessary debug printsRémi Verschelde17-172/+14
2017-10-21Added properties for CubeMap.Nathan Warden1-2/+4
2017-10-21Corrections to #11807.Ferenc Arn1-9/+9
Added missing metallic parameter, also fixed a missed a case where wrong roughness condition was used.
2017-10-21Fix PathFollow rotations.Ferenc Arn2-32/+25
Replaced the lookahead (which is problematic) with exact delta in offset. Also made some other minor fixes and improvements. Fixes #12258.
2017-10-21Added the 2D Joint docsGrosskopf3-0/+10
2017-10-21Fix drop-down size when resizing font #12207Felipe Seixas2-0/+4
Fixes Scene > Open Recent Fixes ScriptEditor > File > Open Recent
2017-10-21File names for scripts can include '-'Jakob Sinclair1-1/+1
Fixes #12261 Signed-off-by: Jakob Sinclair <sinclair.jakob@mailbox.org>
2017-10-21Refactor Fixed to PhysicsPoommetee Ketson11-15/+15
2017-10-21makerst: Remove stray spaces in method signaturesRémi Verschelde1-6/+2
2017-10-21makerst: Add support for [member] and [signal]Rémi Verschelde1-2/+5
Part of #11137. [enum] is still missing, and none are implemented in the engine itself yet.
2017-10-21makerst: Fix rst-ization of members and escaping of [Class]sRémi Verschelde16-23/+33
Fixes #11517.
2017-10-21classref: Sync with current sourceRémi Verschelde15-60/+2137
2017-10-21i18n: Sync translation templates with current sourceRémi Verschelde35-44060/+41861
2017-10-21i18n: Sync translations with WeblateRémi Verschelde32-3678/+3283
2017-10-21[DOCS] InputEvent*Jerome6700012-43/+74
2017-10-21Fixed viewport transparent bg when clear mode is enabled.Daniel J. Ramirez2-1/+5
2017-10-20[DOCS] Updates and clarifications to RigidBody2DChris Bradfield1-48/+49
2017-10-21Fix InputEventJoypadMotion::action_match for 0 axis values.Patrick Yates1-1/+1
Make action_match ignore the sign if axis value is 0. This means that an axis value of 0 will match actions defined for both positive and negative values, as expected. Fixes #12223
2017-10-21Adds world_to_map() and map_to_world() methods to GridMap.David Saltares2-3/+35
Closes #11856. Also fixes GridMap::set_cell_scale() not visually updating the grid meshes
2017-10-20Fix ambiguous documentation for RigidBody2DJakob Sinclair1-2/+2
Fixes #12225 and the possesive form of the word body. Also uses simpler terms now when describing when the linear velocity gets updated. Signed-off-by: Jakob Sinclair <sinclair.jakob@mailbox.org>
2017-10-20Mono: Fix static linking on macOSRémi Verschelde1-1/+5
[ci skip]
2017-10-20[GDnative] remove useless (and illegal !) STL includeEmmanuel Leblond2-2/+0
2017-10-20Fixed unnecesary structure copying in bugfix.Juan Linietsky1-3/+2
2017-10-20Fix adding a NavigationPolygonInstance to a Node2D freezing the editorBojidar Marinov1-1/+1
Fixes #11975
2017-10-20variant.h: Update comments with numeric enum valuesSebastian Krzyszkowiak1-4/+4
Comments got desynchronized with the actual values of the enum. To avoid anyone making some stupid mistake here, let's fix it as soon as possible.