Age | Commit message (Collapse) | Author |
|
|
|
They were wrongly placed, creating a file named "-fpic" instead of
applying "-fpic" to the build. This file was in .gitignore, which made it
less noticiable.
This also adds build.gradle to .gitignore.
|
|
fixes #4973
|
|
|
|
|
|
|
|
-Implemented HiDPI detection and support for Godot Editor!
|
|
|
|
|
|
Windows only for now.
Many builds may break (older visual studio, mingw32)
|
|
x11: Add support for filesystem drag & drop using xdnd
|
|
Add magnetometer sensor support for Android
|
|
Added application/fat_bits property for EditorExportPlatformOSX::Edit…
|
|
Now dropping also works with Nemo and PCManFM(gtk)
|
|
|
|
-DynamicFont uses Freetype by default
-Editor fonts are now scalable thanks to this
-Cleaned up documentation browser and added fonts for this
|
|
|
|
|
|
-Rearrange favorites in fs dock with drag and drop
-Removed import -> sub-scene, moved to scenetree contextual menu
-Removed import -> re-import , moved and integrated to FS dock
-Added ability in FS dock to re-import more than one resource
simultaneously
-Added ability to drag from native filesystem explorer to Godot, only
works on Windows though
-Removed scene reimport merge options, never worked well. Eventually
merging materials should be re-added
-Added ability to set custom root node type when importing scenes
-Re-Import is now automatic, can be configured back to manual in editor
settings
-Added resource previews in property list for many resource types
|
|
EditorExportPlatformOSX::EditorExportPlatformOSX
|
|
error occurred when register additional directory for android module on windows.
### config.py ###
```
def can_build(plat):
return plat=="android"
def configure(env):
if (env['platform'] == 'android'):
env.android_add_res_dir("android/res")
```
|
|
|
|
binary that contains both 32 bits and 64 bits binaries
|
|
It was a duplicate of NDK_TARGET, and not used for anything.
|
|
|
|
|
|
At the moment is however restored when going out and then in again.
|
|
The change in `tools/doc/doc_data.cpp` is needed because the MSVC
compiler does not support variable length arrays.
Fix #4113
|
|
Should fix #4428.
* Minimize button is not hidden anymore
|
|
Fixes 64 bit MSVC builds, disables bits parameter
|
|
Fixes #1452.
|
|
Based on code by @ratsdiov.
Closes #1733
|
|
|
|
|
|
|
|
|
|
|
|
It's no longer maintained and Chrome-specific, so it's not a viable solution
to deploy Godot games in browsers. The current prefered alternative is asm.js
(platform/javascript), and we're looking forward to WebAssembly.
|
|
It was apparently never fully functional and has not been maintained.
Flash itself is nowadays clearly a deprecated technology, so there will
not be further work on it. platform/javascript and the upcoming
WebAssembly technologies should have a brighter future.
|
|
Fix key events in web export
|
|
Fallback to KeyboardEvent property `charCode` is absence of both `key`
and `char` for retrieval of unicode value.
|
|
Scancodes work, but unicode values are now completely broken in some
browser/OS combinations.
|
|
- remove unused resources in platform/android/java/res/values/strings.xml
- add korean language resource for apk expansion download screen
|
|
|
|
Also Enables automatic detection of architecture for the MSVC compilers.
Builds without assembly optimisations for x64
Closes issue #3098
Signed-off-by: Aleksandar Danilovic <greatgames.alexandar@gmail.com>
|
|
|
|
|
|
Expose android/shutdown_adb_on_exit parameter
|
|
It was added in 30d0ca9 for the Steam build but only enabled
when parsing a ._sc_ file that would define it.
It is now available for all users to toggle, in and outside of Steam.
Fixes #4073.
|
|
The 4.9 version is the default one, people can still build using 4.8
with older NDK versions by setting the (optional) NDK_TARGET
and NDK_TARGET_X86 environment variables.
|