summaryrefslogtreecommitdiffstats
path: root/editor/script_create_dialog.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) 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>
* Allow configuring the script filename casing ruleRedMser2024-03-051-2/+1
| | | | | | Defaults to "Auto", which detects the casing based on the preference of the currently selected language (C# for example prefers PascalCase whereas GDScript prefers snake_case).
* Fix ScriptCreateDialog not accepting on submitkobewi2023-09-251-1/+0
|
* Editor: Remove unused Class Name field from Create Script dialogDanil Alexeev2023-09-121-9/+4
|
* Standardize dialog input validation as a new classkobewi2023-08-081-8/+10
|
* 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".
* Revert "Fix "Script Create" dialog errors with metadata"kobewi2022-12-011-1/+0
| | | | This reverts commit bb5198a5ac92a6fe699751df9bb9c09109a2955a.
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-2/+2
| | | | change warnings=all to use /W4.
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-22/+22
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* Fix "Script Create" dialog errors with metadataMichael Alexsander2022-03-271-0/+1
|
* Initialize bools in the headers in editorAaron Franke2022-03-121-15/+13
|
* Fix errors when updating script template listHaoyu Qiu2022-02-201-1/+0
|
* Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-2/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Improve editor template workflowfabriceci2022-01-021-18/+15
| | | | Co-Authored-By: jmb462 <jmb462@gmail.com>
* Allow to name built-in scripts upon creationkobewi2021-11-041-0/+4
|
* Minor cleanup of the "New Script" dialogMichael Alexsander2021-07-041-2/+0
|
* Documentation search fixesGregory Basile2021-06-161-1/+1
| | | | | | Updates rich_text_label so that the built-in documentation can be searched Previously, it would only find the first result and would not select other results Renames "_entered" functions to "_submitted"
* Warn when creating a script with the same name as the parent classAaron Franke2021-04-061-0/+2
|
* 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 🎆
* Initialize class/struct variables with default values in platform/ and editor/Rafał Mikrut2020-12-021-2/+2
|
* Add override keywords.Marcel Admiraal2020-07-101-1/+1
|
* Warn about built-in script limitations in the script creation dialogHugo Locurcio2020-04-041-0/+1
| | | | This partially addresses #31758.
* Working multiple window support, including editorJuan Linietsky2020-03-261-0/+2
|
* 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`.
* Add option to disable loading scripts in ScriptCreateDialogMichael Alexsander2020-01-091-1/+2
|
* Minor fixes for ScriptCreateDialogMichael Alexsander2020-01-081-1/+0
|
* 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.
* Allow to define and load script templates per projectAndrii Doroshenko (Xrayez)2019-08-221-1/+18
| | | | | | | | | | | | | | | | | | | | | Previously it was only possible to create custom script templates per editor instance which could lead to certain name collisions, but now one can create such templates per project tailored for specific use cases. The default path to search for custom script templates is defined in project settings via `editor/script_templates_search_path` setting as `res://script_templates` path, yet this can be configured per project. Templates have at most two origins now: 1. Project-specific, defined in `ProjectSettings`, for instance: - res://script_templates/ 2. Editor script templates, for instance: - %APPDATA%/Godot/script_templates/ As script templates can have the same name over different paths, the override mechanism was also added, enabling project-specific templates over the editor ones.
* Display language icons in script create dialogAndrii Doroshenko (Xrayez)2019-08-121-0/+1
|
* Use CheckBoxes in the editor instead of CheckButtons when applicableHugo Locurcio2019-07-041-2/+2
| | | | | CheckButtons should only be used if toggling them has an immediate effect. Otherwise, CheckBoxes should be used.
* Fix script create dialogJames Buck2019-06-111-1/+2
| | | | | | | | - Correctly validate parent/class names - Trigger parent validation when selecting from buttons - Fix enabling/disabling parent buttons - Clear class name if not supported - Minor cleanup
* Hide "Built-in Script" option in the script creation dialog when not possibleMichael Alexsander Silva Dias2019-05-021-0/+1
|
* Fix script dialog path validation to handle spaces correctlyDrNochi2019-04-301-0/+1
|
* Merge pull request #25708 from SeleckyErik/issue-25611-script_dialog_cursorRémi Verschelde2019-04-301-0/+1
|\ | | | | Moves cursor to and selects "new_script" in Create Script dialog
| * Moves cursor to and selects "new_script" in Create Script dialogErik2019-02-081-0/+1
| | | | | | | | | | When Create Script dialog pops up, the cursor in the Path LineEdit is moved to the "new_script" name placeholder and it is selected.
* | Add class tree selection to script inheritance selectionlupoDharkael2019-02-181-0/+8
|/
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Prevent built-in-scripts from being made from FileSystem dockDualMatrix2018-09-231-2/+3
| | | | Prevent built-in-scripts from being made from FileSystem dock
* Update icons when theme changedPoommetee Ketson2018-02-251-0/+1
|
* Fixed "Attach Script" dialog's file dialog labeling.Michael Alexsander Silva Dias2018-01-101-1/+1
|
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Pressing Enter key creates or loads script on Attach script windowvolzhs2017-12-111-0/+1
|
* Add ScriptLanguage::supports_builtin_mode and improve ScriptCreateDialogIgnacio Etcheverry2017-10-241-0/+1
| | | | | - Make ScriptCreateDialog disable the built-in script checked button if the language does not support it. - ScriptLanguage's get_template and make_template now receive the script path as class name if the the script language does not have named classes.
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Updated function argument namesWilson E. Alvarez2017-08-121-1/+1
|
* ScriptCreateDialog: fix open error crash, remember templatePoommetee Ketson2017-07-071-1/+1
|
* Add ability to use custom script templates.Andreas Haas2017-06-131-0/+3
| | | | | | | | | | Templates will be loaded from .godot/script_templates For now they're disabled for GDNative. Ideas for further improvements: - Add a "Save as Template" option to the script editor, as it can normally only save to res:// - Support more placeholders / custom placeholders