Age | Commit message (Collapse) | Author |
|
Update SyntaxHighlighter documentation
|
|
Removed duplicated binding of two methods
|
|
Since it's meant to be used as a virtual method.
|
|
They are bound as both regular and virtual methods which makes ClassDB
report the methods twice when querying the API. The non-virtual binding
is removed since both methods only seem to be used as virtual.
|
|
Use the blend parameter passed to blend_animation
|
|
|
|
Improve the `File.endian_swap` documentation
|
|
[4.0] [iOS] Additional 'linker_flags' plugin parameter
|
|
[4.0] [iOS] Native loading screen implementation
|
|
If 'Launch Screen' storyboard is present it will be used as loading screen.
|
|
|
|
Fix particles not properly updated by their lifetime
|
|
[iOS] Remove remote notifications code
|
|
Using any remote notification method (even indirectly) causes App Store to trigger APNS warning email.
|
|
SCons: Add `production=yes` option to use production defaults
|
|
This is meant for users making custom builds to match the options used on
optimized, official builds.
This enables, on the platforms which support them:
- `use_static_cpp=yes` (portable binaries for Linux and Windows)
- `use_lto=yes` (link time optimizations - note: requires a lot of RAM!)
- `debug_symbols=no` (no debug symbols, smaller binaries)
Also abort when using MSVC with `production=yes`, as:
- It cannot optimize the GDScript VM like GCC or Clang do, leading to
significant performance drops.
- Its LTO support is unreliable, at least used to trigger crashes last
we tried it extensively.
All options can still be overridden if specified, and the `dev=yes` option
was changed to also support overrides.
|
|
Make audio bus channels' peak volume consistent
|
|
Add check for sun in PhysicalSky
|
|
|
|
Fix swapped front/rear view
|
|
[HTML5] Fix mouse_mode and fullscreen detection.
|
|
Move project-specific editor data into res://.godot/editor
|
|
Add AudioEffectCapture
|
|
Main: Load translations and remaps before scene types
|
|
C conformance: Replace "bool" as the base definition for boolean with char
|
|
|
|
|
|
The canvas_id is `#`-prefixed to work with emscripten as a CSS selector.
When comparing to an event target ID (e.g. when checking if the canvas
is fullscreen, or is locking the mouse) we need to skip the first char
(the hash).
|
|
|
|
AudioEffectCapture allows access to the microphone and other audio on an audio bus in real-time.
Co-Authored-By: K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com>
|
|
`bool` is otherwise not defined in C.
|
|
[4.0] [iOS] Earlier plugin initialization
|
|
Fix port previews for uniforms in visual shaders
|
|
This ensures that settings like `gui/theme/custom_font` handle resource
remappings properly, as they load resources in `register_scene_types()`.
Path remaps used to be done before loading scene types in early Godot
versions (as hinted by the "Load Remaps" comment just before "Load Scene
Types") but this was broken when developing new localization features.
Fixes #17640.
|
|
Check default project and autoscan directories exist on project manager startup
|
|
|
|
New contributors added to AUTHORS:
@dalexeev, @dsnopek, @HaSa1002
Thanks to all contributors and donors for making Godot possible!
|
|
|
|
Channels that are inactive -or when playback has not started yet- will report -200 dB as their peak value (which is also the lowest value possible during playback).
|
|
Fix macOS Vulkan debug label crash.
|
|
functions are used. Add temporary variables to fix potential use-after-free.
|
|
Replace ColorN and from HTML with a string constructor
|
|
|
|
3D editor grid improvements
|
|
Don't use trashy max_decals value to prevent crashes
|
|
This commit adds a view-dependant fade to the 3D viewport grid. It fades out
at steep view angles to hide the solid regions that appear far from the camera.
I also included a fade to hide the grid borders.
I added some improvements to the dynamic grid when the camera is in orthogonal mode.
It properly handles zoom now, and the grid center is now set to the intersection point
between the grid plane and the camera forward ray, keeping the grid
always visible.
|
|
|
|
Use Math_TAU and deg2rad/etc in more places and optimize code
|
|
Fixed completion and hint panel positioning in TextExit
|
|
Reference the control gallery image in the Control class documentation
|