aboutsummaryrefslogtreecommitdiff
path: root/servers/visual/visual_server_viewport.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Removed add/remove interface bindings and added get_interfacesBastiaanOlij2017-11-131-1/+1
|
* Fixed viewport transparent bg when clear mode is enabled.Daniel J. Ramirez2017-10-211-1/+2
|
* Dead code tells no talesRémi Verschelde2017-08-271-30/+1
|
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Adding base classes and structures for ARVR supportBastiaanOlij2017-07-281-21/+59
| | | | | | Added ArVrScriptInterface Added ARVRCamera, ARVRController and ARVROrigin helper objects
* -Renamed GlobalConfig to ProjectSettings, makes more sense.Juan Linietsky2017-07-191-1/+1
| | | | -Added system for feature overrides, it's pretty cool :)
* -Reorganized all properties of project settings (Sorry, Again).Juan Linietsky2017-07-171-1/+1
| | | | | (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 VisualScript, fixed property names, etc.Juan Linietsky2017-06-301-0/+1
| | | | | | -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
* -Restored support for Canvas BG mode on EnvironmentJuan Linietsky2017-06-241-28/+40
| | | | | -Improved ease of use of WorldEnvironment (no longer extends Spatial) -2D editor viewport can now work in HDR!
* Fix transparent background rendering, closes #8703Juan Linietsky2017-06-171-1/+3
| | | | Properly implemented UPDATE_WHEN_VISIBLE mode for viewports
* Restored everything related to information polling, and added information ↵Juan Linietsky2017-06-111-1/+12
| | | | box for viewport.
* Restored multiple viewport function, as well as view modes.Juan Linietsky2017-06-111-0/+21
|
* -Restored multithread capability to VisualServerJuan Linietsky2017-06-091-2/+41
| | | | -Restored resource previews!
* renamed all Rect2.pos to Rect2.positionalexholly2017-06-041-1/+1
|
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-081-0/+1
|
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-051-214/+164
| | | | | | | | | | | | | | | | | | | | | | | | I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
* Add a bunch of missing Godot headers in own filesRémi Verschelde2017-03-051-0/+28
|
* -renamed globals.h to global_config.cpp (this seems to have caused a few ↵Juan Linietsky2017-02-211-1/+1
| | | | | | modified files) -.pck and .zip exporting redone, seems to be working..
* Style: Fix whole-line commented codeRémi Verschelde2017-01-141-2/+2
| | | | | They do not play well with clang-format which aligns the `//` part with the rest of the code block, thus producing badly indented commented code.
* Type renames:Juan Linietsky2017-01-111-6/+6
| | | | | | | | | | | | Matrix32 -> Transform2D Matrix3 -> Basis AABB -> Rect3 RawArray -> PoolByteArray IntArray -> PoolIntArray FloatArray -> PoolFloatArray Vector2Array -> PoolVector2Array Vector3Array -> PoolVector3Array ColorArray -> PoolColorArray
* -Changed most project settings in the engine, so they have major and minor ↵Juan Linietsky2017-01-051-1/+1
| | | | | | | | categories. -Changed SectionedPropertyEditor to support this -Renamed Globals singleton to GlobalConfig, makes more sense. -Changed the logic behind persisten global settings, instead of the persist checkbox, a revert button is now available
* WIP particle systemJuan Linietsky2017-01-011-0/+16
| | | | | | Ability to enable and change MSAA settings Ability to change VCT quality Ability to enable/disable HDR rendering
* working reflection probes!!Juan Linietsky2016-11-191-13/+16
|
* all light types and shadows are working, pending a lot of clean-upJuan Linietsky2016-11-091-2/+25
|
* Everything returning to normal in 3D, still a long way to goJuan Linietsky2016-10-191-0/+14
| | | | -implemented the scene part of visual server and rasterizer, objects without lighting and material are rendererd only
* -Added ViewportContainer, this is the only way to make viewports show up in ↵Juan Linietsky2016-10-051-9/+32
| | | | | | | GUI now -2D editing now seems to work -Added some functions and refactoring to Viewport
* Begining of GLES3 renderer:Juan Linietsky2016-10-031-0/+489
-Most 2D drawing is implemented -Missing shaders -Missing all 3D -Editor needs to be set on update always to be used, otherwise it does not refresh -Large parts of editor not working