aboutsummaryrefslogtreecommitdiff
path: root/servers/visual (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Merge pull request #9765 from Noshyaar/pr-clangRémi Verschelde2017-07-233-3/+2
|\ | | | | Clang-formatting *.cpp and *.h (some files excluded)
| * Clang-formatting *.cpp and *.h (some files excluded)Poommetee Ketson2017-07-223-3/+2
| |
* | Several changes to better run in mobile.Juan Linietsky2017-07-221-0/+3
|/
* -Renamed GlobalConfig to ProjectSettings, makes more sense.Juan Linietsky2017-07-193-3/+3
| | | | -Added system for feature overrides, it's pretty cool :)
* -Reorganized all properties of project settings (Sorry, Again).Juan Linietsky2017-07-172-2/+2
| | | | | (Lot's of bloat accumulated, so it was time for clean up.) -Made EditorSettings and ProjectSettings search more useful (search in sections too)
* Many fixes to improve GI Probe qualityJuan Linietsky2017-07-154-4/+19
|
* -Fix for multiple reflection probes causing issues.Juan Linietsky2017-07-151-1/+1
| | | | -Fix for positional sound corruption to avoid making people deaf.
* Lots of work on Audio & Physics engine:Juan Linietsky2017-07-151-0/+18
| | | | | | | | -Added new 3D stream player node -Added ability for Area to capture sound from streams -Added small features in physics to be able to properly guess distance to areas for sound -Fixed 3D CollisionObject so shapes are added the same as in 2D, directly from children -Fixed KinematicBody API to make it the same as 2D.
* Merge pull request #9564 from Noshyaar/pr-thresholdRémi Verschelde2017-07-081-1/+1
|\ | | | | Refactor 'treshold' to 'threshold'
| * Refactor 'treshold' to 'threshold'Poommetee Ketson2017-07-081-1/+1
| |
* | Some adjustments to toon material to make it more flexibleJuan Linietsky2017-07-081-0/+1
| | | | | | | | Ability to also disable specular
* | Added triplanar mapping, toon mode, and more specular modes for materials. ↵Juan Linietsky2017-07-084-0/+10
|/ | | | Added multipass support for materials.
* -Added triplanar mapping modesJuan Linietsky2017-07-082-5/+3
| | | | -Some fixes to shader lang
* -Many fixes to VisualScript, fixed property names, etc.Juan Linietsky2017-06-306-2/+124
| | | | | | -Added ability to set/get a field in GetSet, as well as assignment ops -Added a Select node -Fixed update bugs related to variable list and exported properties, closes #9458
* -Fixed SCREEN_TEXTURE and other related 2D shader parameters.Juan Linietsky2017-06-261-2/+4
| | | | -Fixded BackBuffercopy object
* Ability to restart particle system with a function callJuan Linietsky2017-06-253-0/+6
|
* -Restored support for Canvas BG mode on EnvironmentJuan Linietsky2017-06-244-28/+57
| | | | | -Improved ease of use of WorldEnvironment (no longer extends Spatial) -2D editor viewport can now work in HDR!
* Small fixes required to get platformer to work.Juan Linietsky2017-06-231-0/+1
| | | | Added back CanvasItemMaterial
* Order of 2D nodes in tree affects drawing properly again.Juan Linietsky2017-06-222-0/+20
|
* 2D GPU Particles working..Juan Linietsky2017-06-215-1/+45
|
* Texture rect_region drawing now clamps UV to avoid bleeding. This avoids ↵Juan Linietsky2017-06-185-5/+10
| | | | scenarios like single-texture tilemap tiles leaking pixels to the next tile when filter is enabled on it.
* Add normalmap support for drawing in all low level primitives. Only added ↵Juan Linietsky2017-06-175-24/+36
| | | | support in Sprite so far.
* -Fixed shader lang to not be able to get scalar from matrix (ie mat.x), to ↵Juan Linietsky2017-06-172-3/+5
| | | | | | | | make it more GLSL compatible -Fixed referencing of world_transform in fragment shader not working -Fixed unsycn bug related to getting shader param list from the server -Fixed getting all textures from shader properly, fixes #8353
* Fix transparent background rendering, closes #8703Juan Linietsky2017-06-173-5/+5
| | | | Properly implemented UPDATE_WHEN_VISIBLE mode for viewports
* Particles properly update the shadow maps, closes #8815Juan Linietsky2017-06-172-0/+33
|
* -Fix freezes caused by etccomp2, closes #9183Juan Linietsky2017-06-163-0/+3
| | | | -Normalmaps are now detected and imported as RGTC, both in S3TC and ETC2, this improves their quality.
* Merge pull request #9208 from Calinou/tweak-default-fovRémi Verschelde2017-06-161-1/+1
|\ | | | | Increase the default perspective camera FOV
| * Increase the default perspective camera FOVHugo Locurcio2017-06-161-1/+1
| | | | | | | | | | This does not affect existing projects, but will affect newly-created editor settings and Camera nodes.
* | TIME constant reverted to a single float, fixes #9123Juan Linietsky2017-06-161-1/+1
| |
* | Fixes to SSR, WIP.Juan Linietsky2017-06-163-3/+3
|/
* Merge pull request #9109 from RandomShaper/optimize-2d-lightingJuan Linietsky2017-06-141-0/+2
|\ | | | | Add AT_LIGHT_PASS builtin to canvas shaders
| * Add AT_LIGHT_PASS builtin to canvas shadersPedro J. Estébanez2017-06-151-0/+2
| | | | | | | | | | | | This one allows for complex shaders paired with a simple lighting shader to skip code that would otherwise be pointlessly (and wastefully) run during the light pass. Depending on your game (number of items and lights), this can yield some performance gain.
* | Fixed several bugs with directional light, and changed defaults to be more ↵Juan Linietsky2017-06-142-6/+19
| | | | | | | | sensible.
* | -Fixed occluder rendering, closes #8560Juan Linietsky2017-06-135-0/+12
| | | | | | | | -Ability to smooth out 2D shadow filters
* | Fixed compilation on Windows + removed debug printMarc Gilleron2017-06-121-2/+2
| |
* | Restored everything related to information polling, and added information ↵Juan Linietsky2017-06-114-4/+28
| | | | | | | | box for viewport.
* | Restored multiple viewport function, as well as view modes.Juan Linietsky2017-06-116-0/+50
|/
* renamed all Rect3.pos to Rect3.positionalexholly2017-06-091-2/+2
|
* -Restored multithread capability to VisualServerJuan Linietsky2017-06-097-4/+850
| | | | -Restored resource previews!
* -Added proper access to depth texture from shaderJuan Linietsky2017-06-071-0/+1
| | | | -Split Mesh into Mesh (abstrat class) and ArrayMesh, to allow to proper mesh primitives, as well as streamable meshes in the future.
* Fog is complete!Juan Linietsky2017-06-072-0/+8
|
* -working SCREEN_TEXTURE, SCREEN_UV shader variablesJuan Linietsky2017-06-051-0/+2
| | | | | -Added refraction support for default material -Enabled BCS adjustments, as well as color correction.
* Fix build errorPoommetee Ketson2017-06-051-1/+0
|
* Merge pull request #9038 from AlexHolly/rect2-rename-posRémi Verschelde2017-06-053-8/+8
|\ | | | | renamed all Rect2.pos to Rect2.position
| * renamed all Rect2.pos to Rect2.positionalexholly2017-06-043-8/+8
| |
* | Added depth texture support (using parallax) to default material.Juan Linietsky2017-06-042-2/+32
|/
* Rework shading modes and change location of light shaderJuan Linietsky2017-06-011-2/+5
|
* rewritten PBR implementation to make it friendlier with BlenderJuan Linietsky2017-05-311-1/+2
|
* Fixed a typo in a Visual Server var name (#8977)suptoasty2017-05-292-5/+5
|
* Removed skybox support, added panorama support. Skybox support may come back ↵Juan Linietsky2017-05-252-11/+11
| | | | eventually, but hope not.