summaryrefslogtreecommitdiffstats
path: root/scene/3d/label_3d.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-1/+1
|\
| * Core: Integrate `Ref::instantiate` where possibleThaddeus Crews2024-11-101-1/+1
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* [Label3D] Fix updating labels in subvieports on oversampling change.bruvzg2024-09-081-7/+7
|
* Improve Editor Inspector/Theme item lookup performanceaaronp642024-08-201-4/+4
| | | | | | | | | | | Changes to reduce the latency between changing node selection in the editor and seeing the new node reflected in the Inspector tab - Use Vector instead of List for ThemeOwner::get_theme_type_dependencies and related functions - Use Vector instead of List for ThemeContext::themes, set_themes(), and get_themes() - Add ClassDB:get_inheritance_chain_nocheck to get all parent/ancestor classes at once, to avoid repeated ClassDB locking overhead - Update BIND_THEME_ITEM macros and ThemeDB::update_class_instance_items to use provided StringNames for call to ThemeItemSetter, instead of creating a new StringName in each call These changes reduce the time taken by EditorInspector::update_tree by around 30-35%
* [Scene] Add `SceneStringNames::font(_size/_color)`A Thousand Ships2024-06-181-1/+1
|
* Use Core/Scene stringnames consistentlykobewi2024-05-131-1/+0
|
* Add no-change check to Label3DMarkus Stephanides2024-04-251-0/+4
|
* Fix Label3D, TextMesh & Font not following project default theme in editorMicky2024-03-091-2/+9
|
* Merge pull request #89145 from bruvzg/lbl3d_aabbRémi Verschelde2024-03-051-6/+7
|\ | | | | | | [Label3D] Calculate AABB from the full text rect instead of individual glyphs.
| * [Label3D] Calculate AABB from the full text rect instead of individual glyphs.bruvzg2024-03-041-6/+7
| |
* | Make `Label3D` obey auto translationMichael Alexsander2024-03-011-2/+2
|/
* [TextServer] Do not draw non-visual characters.bruvzg2023-12-121-20/+30
|
* Introduce the concept of global theme contextsYuri Sizov2023-09-061-28/+17
| | | | | | | | | | | | | | | | | This commit adds the default theme context, which replaces the need to manually check the project and the default theme all the time; simplifies related code. It also adds framework for custom theme contexts, to be used by the editor. Custom contexts can be attached to any node, and not necessarily a GUI/Window node. Contexts do no break theme inheritance and only define which global themes a node uses as a fallback. Contexts propagate NOTIFICATION_THEME_CHANGED when one of their global themes changes. This ensures that global themes act just like themes assigned to individual nodes and can be previewed live in the editor.
* [Text Server] Store extra spacing of individual font variations.bruvzg2023-08-241-6/+0
|
* Unify and streamline connecting to Resource changeskobewi2023-07-171-7/+6
|
* Convert some Callables to callable_mp()kobewi2023-07-121-11/+7
|
* Use NULL instead of COND checks when appropriateNinni Pipping2023-06-101-2/+2
| | | | Restricted to scene
* Expose TextServer justification flags to Label, Label3D, TextMesh and RTL. ↵bruvzg2023-05-151-2/+34
| | | | Add flags to control last/single line justification.
* Merge pull request #72225 from MinusKube/shaped_text_invalidated_bugRémi Verschelde2023-02-131-0/+12
|\ | | | | | | Mark dirty flags when shaped texts are invalidated
| * Mark dirty flags when shaped texts are invalidatedMinusKube2023-01-281-0/+12
| |
* | [Sprite3D/Label3D] Expose alpha antialiasing properties.bruvzg2023-01-311-1/+32
| |
* | Fix unsafe murmur3 hash use for the default material keys, expose alpha hash ↵bruvzg2023-01-241-3/+29
|/ | | | transparency mode for default materials and Label3D and Sprite3D.
* Implement BiDi override mode for GDScript source.bruvzg2023-01-181-1/+1
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Add safety-checks before some servers `free()`Adam Scott2022-12-291-0/+1
|
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-9/+9
| | | | change warnings=all to use /W4.
* [TextServer] Add support for trimming edge spaces on line break.bruvzg2022-09-011-1/+2
|
* Add ThemeDB, expose previously static Theme methodsYuri Sizov2022-08-261-8/+9
|
* Merge pull request #63528 from bruvzg/fix_lbl3d_oversamplingRémi Verschelde2022-08-261-0/+9
|\
| * Fix Label3D not updated on window resize.bruvzg2022-07-271-0/+9
| |
* | Replace Array return types with TypedArraykobewi2022-08-221-1/+1
| |
* | Make `_validate_property` a multilevel methodYuri Sizov2022-08-221-9/+9
| |
* | Hide properties that have no effect in Label3D inspectorHugo Locurcio2022-08-151-1/+17
| | | | | | | | | | - Use the disabled GI mode as Label3D can't contribute to GI in any way. - Improve Label3D class documentation.
* | Change default material alpha scissor threshold to 0.5Hugo Locurcio2022-08-011-1/+1
|/ | | | | | | | This makes the default behavior consistent between SpriteBase3D, BaseMaterial3D and imported glTF scene materials. Alpha scissor threshold property hints now allows for more precise adjustments as well.
* Use BitField hint for the TextServer enums. Add missing parts for BitField ↵bruvzg2022-07-151-2/+2
| | | | support to the GDextension API.
* Refactor Font configuration and import UI, and Font resources.bruvzg2022-07-061-88/+17
|
* Use custom key structs, instead of raw hashes for the Label3D and TextMesh, ↵bruvzg2022-07-041-14/+7
| | | | to avoid potential hash collisions.
* Clean up Hash Functionsreduz2022-06-201-1/+1
| | | | | | | Clean up and do fixes to hash functions and newly introduced murmur3 hashes in #61934 * Clean up usage of murmur3 * Fixed usages of binary murmur3 on floats (this is invalid) * Changed DJB2 to use xor (which seems to be better)
* Move duplicate AutoWrap, Overrun and VisibleChar behavior enums to the ↵bruvzg2022-06-161-11/+6
| | | | TextServer.
* Add suffixes to all nodes and resourcesFireForge2022-06-111-6/+6
|
* [Label3D, 4.x] Monitor default theme font changes, to prevent use of invalid ↵bruvzg2022-05-231-3/+23
| | | | materials.
* Replace most uses of Map by HashMapreduz2022-05-161-12/+12
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Expose Label3D and Sprite*3D material render priority properties.bruvzg2022-04-301-2/+34
|
* [Label3D] Add offset property.bruvzg2022-04-281-2/+18
|
* Implement Label3D node.bruvzg2022-04-221-0/+962
Add "generate_mipmap" font import option. Add some missing features to the Sprite3D. Move BiDi override code from Control to TextServer. Add functions to access TextServer font cache textures. Add MSDF related flags and shader to the standard material. Change standard material cache to use HashMap instead of Vector.