summaryrefslogtreecommitdiffstats
path: root/modules/csg/csg_shape.h
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* Add CSG options to bake to static mesh and collision shapesmix82024-06-191-0/+5
| | | | Adds API to bake a CSG root node operation to either a static ArrayMesh or a ConcavePolygonShape3D physics collision shape. Adds menu options to the editor plugin when selecting a CSG root node to add baked sibling nodes.
* Move 3D-only resources to their own folderAaron Franke2024-02-261-1/+1
|
* Style: Harmonize header includes in modulesRémi Verschelde2023-06-151-2/+2
| | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* Add debug collision shape to CSG with collisionRicardo Buring2023-05-031-0/+6
|
* Add compatibility code for CSGBox3D width/height/depth from Godot 3.xDESKTOP-9O27V4U\Navi2023-02-131-0/+4
| | | | Fixes #66420.
* 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".
* Merge pull request #64339 from YuriSizov/core-multilevel-validate-propertyRémi Verschelde2022-08-221-2/+2
|\
| * Make `_validate_property` a multilevel methodYuri Sizov2022-08-221-2/+2
| |
* | Add collision weight to PhysicsBody for penetrations must be avoidedSilc Renew2022-08-181-0/+4
|/ | | | Co-authored-by: Juan Linietsky <reduzio@gmail.com>
* Clean up Hash Functionsreduz2022-06-201-3/+3
| | | | | | | 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)
* Rename `CSGPrimitive3D.invert_faces` to `flip_faces`hoontee2022-05-061-3/+3
|
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-1/+1
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* Discern between virtual and abstract class bindingsreduz2022-03-101-1/+0
| | | | | | | | | | | | | | * Previous "virtual" classes (which can't be instantiated) are not corretly named "abstract". * Added a new "virtual" category for classes, they can't be instantiated from the editor, but can be inherited from script and extensions. * Converted a large amount of classes from "abstract" to "virtual" where it makes sense. Most classes that make sense have been converted. Missing: * Physics servers * VideoStream * Script* classes. which will go in a separate PR due to the complexity involved.
* Properly handle CSGShape parent and visibility updates, plus some refactoringhoontee2022-03-081-2/+4
|
* Improve the default size for 3D shapes (Box, Capsule, and Cylinder)Aaron Franke2022-02-011-1/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* CSGPolygon fixes and features: Angle simplification, UV tiling distance, ↵jitspoe2021-09-271-0/+18
| | | | interval type.
* Merge pull request #51532 from nekomatata/layer-mask-accessorsRémi Verschelde2021-08-121-4/+4
|\ | | | | Uniformize layer names, script methods and documentation
| * Uniformize layer names, script methods and documentationPouleyKetchoupp2021-08-121-4/+4
| | | | | | | | | | | | | | - Back to 1-based layer names to make it clearer in editor UI - Layer bit accessors are renamed to layer value and 1-based too - Uniform errors and documentation in render and physics - Fix a few remaining collision_layer used in place of collision_mask
* | Fix multiple issues with CSGPolygonMarcel Admiraal2021-08-121-4/+3
|/
* Some work on double supportAaron Franke2021-08-091-2/+2
|
* Initialize class/struct variables with default values in modules/Rafał Mikrut2021-02-081-14/+14
|
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Use Vector3 instead of 3 floats for CSGBox3D dimensionsMarcel Admiraal2020-12-081-12/+4
|
* Add override keywords.Marcel Admiraal2020-07-101-11/+11
|
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-5/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Renamed 2D and 3D nodes to make their types explicitJuan Linietsky2020-03-271-35/+35
| | | | Fixes #30736.
* Style: Set clang-format Standard to Cpp11Rémi Verschelde2020-03-171-1/+1
| | | | | | | | | | For us, it practically only changes the fact that `A<A<int>>` is now used instead of the C++03 compatible `A<A<int> >`. Note: clang-format 10+ changed the `Standard` arguments to fully specified `c++11`, `c++14`, etc. versions, but we can't use `c++17` now if we want to preserve compatibility with clang-format 8 and 9. `Cpp11` is still supported as deprecated alias for `Latest`.
* PoolVector is gone, replaced by VectorJuan Linietsky2020-02-181-11/+11
| | | | | Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`.
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Some code changed with Clang-Tidyqarmin2019-06-261-1/+1
|
* Made use of semicolons more consitent, fixed formattingJohnJLight2019-06-191-8/+9
|
* Take CSG into account for nav-mesh generationjfons2019-06-131-1/+1
|
* CSGMesh material and CSGShape inherits from GeometryInstanceLeonard Meagher2019-04-111-2/+6
| | | | | | I left the material on CSGMesh because GeometryInstance's material override prevents the normal material behaviour of the csg meshes but the material_override is useful, and now you can control the shadow, lod and other properties you get from GeometryInstance
* Make CSG Shape work with GIProbe, fixes #20465Juan Linietsky2019-01-271-0/+2
|
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add support for collision layers and masks in CSG shapesmeditator2018-12-151-0/+14
|
* Reverse bitangent on everythings to ensure default normal map behavriour is ↵Bastiaan Olij2018-12-081-1/+0
| | | | consistent
* Adding mikkt tangent support to CSG objectsBastiaan Olij2018-11-171-0/+18
|
* Added path_local and path_continious_u properties to CSGPolygonBastiaan Olij2018-07-071-0/+12
|
* Add missing copyright headersGuilherme Felipe2018-05-161-0/+30
|
* -Changed how operators work, any shape can operate on any otherJuan Linietsky2018-04-281-15/+12
| | | | -Added some break condition for bad poly data to avoid editor freezes
* CSG Support for Godot!Juan Linietsky2018-04-271-0/+363
-Missing Icons -Missing freezing option (for baking light and faster load) -Missing a way to export from Godot (GLTF2?) -Probably buggy (may freeze editor, can be worked around easily, but let me know if this happens so it's easier to catch bugs) Happy testing!