summaryrefslogtreecommitdiffstats
path: root/doc/classes/CameraFeed.xml
Commit message (Collapse)AuthorAgeFilesLines
* Port camera feed to the new RenderingServer API.bruvzg2021-08-121-0/+53
|
* Rename Reference to RefCountedPedro J. Estébanez2021-06-111-1/+1
|
* Improve the CameraServer and CameraFeed class documentationsHugo Locurcio2020-04-081-1/+1
| | | | This closes https://github.com/godotengine/godot-docs/issues/3255.
* doc: Sync classref with current sourceRémi Verschelde2020-02-121-50/+0
| | | | | | | | Lots of internal API changes and some docstrings were lost in the conversion. I manually salvaged many of them but for all the rendering-related ones, an additional pass is needed. Added missing enum bindings in BaseMaterial3D and VisualServer.
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* [DOC] Fill in various missing method/member descriptions.Chris Bradfield2019-10-061-3/+5
|
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-2/+2
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-5/+5
| | | | | | | | | | | | | - Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies
* Made constants fully upper case in camera serverBastiaan Olij2019-06-191-2/+2
|
* Adding a new Camera Server implementation to Godot.BastiaanOlij2019-06-151-0/+64
This is a new singleton where camera sources such as webcams or cameras on a mobile phone can register themselves with the Server. Other parts of Godot can interact with this to obtain images from the camera as textures. This work includes additions to the Visual Server to use this functionality to present the camera image in the background. This is specifically targetted at AR applications.