mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 10:27:47 +02:00
Update example app
This commit is contained in:
parent
29c22d5d45
commit
88dbdf4511
@ -1 +1 @@
|
|||||||
{"content":[{"name":"game.projectc","size":2838,"pieces":[{"name":"game.projectc0","offset":0}]},{"name":"game.arci","size":5008,"pieces":[{"name":"game.arci0","offset":0}]},{"name":"game.arcd","size":279217,"pieces":[{"name":"game.arcd0","offset":0}]},{"name":"game.dmanifest","size":10936,"pieces":[{"name":"game.dmanifest0","offset":0}]},{"name":"game.public.der","size":162,"pieces":[{"name":"game.public.der0","offset":0}]}]}
|
{"content":[{"name":"game.projectc","size":3140,"pieces":[{"name":"game.projectc0","offset":0}]},{"name":"game.arci","size":5168,"pieces":[{"name":"game.arci0","offset":0}]},{"name":"game.arcd","size":287011,"pieces":[{"name":"game.arcd0","offset":0}]},{"name":"game.dmanifest","size":11332,"pieces":[{"name":"game.dmanifest0","offset":0}]},{"name":"game.public.der","size":162,"pieces":[{"name":"game.public.der0","offset":0}]}]}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
title = druid
|
title = druid
|
||||||
version = 0.4.0
|
version = 0.5.0
|
||||||
write_log = 0
|
write_log = 0
|
||||||
compress_archive = 1
|
compress_archive = 1
|
||||||
|
|
||||||
@ -30,6 +30,7 @@ world_count = 4
|
|||||||
gravity_x = 0
|
gravity_x = 0
|
||||||
gravity_z = 0
|
gravity_z = 0
|
||||||
scale = 1
|
scale = 1
|
||||||
|
allow_dynamic_transforms = 0
|
||||||
debug_scale = 30
|
debug_scale = 30
|
||||||
max_collisions = 64
|
max_collisions = 64
|
||||||
max_contacts = 128
|
max_contacts = 128
|
||||||
@ -49,6 +50,10 @@ max_draw_calls = 1024
|
|||||||
max_characters = 8192
|
max_characters = 8192
|
||||||
max_debug_vertices = 10000
|
max_debug_vertices = 10000
|
||||||
texture_profiles = /example/custom.texture_profiles
|
texture_profiles = /example/custom.texture_profiles
|
||||||
|
verify_graphics_calls = 1
|
||||||
|
|
||||||
|
[shader]
|
||||||
|
output_spirv = 0
|
||||||
|
|
||||||
[sound]
|
[sound]
|
||||||
gain = 1
|
gain = 1
|
||||||
@ -56,6 +61,7 @@ max_sound_data = 128
|
|||||||
max_sound_buffers = 32
|
max_sound_buffers = 32
|
||||||
max_sound_sources = 16
|
max_sound_sources = 16
|
||||||
max_sound_instances = 256
|
max_sound_instances = 256
|
||||||
|
max_component_count = 32
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
http_cache = 0
|
http_cache = 0
|
||||||
@ -85,6 +91,7 @@ max_particle_count = 1024
|
|||||||
|
|
||||||
[collection]
|
[collection]
|
||||||
max_instances = 1024
|
max_instances = 1024
|
||||||
|
max_input_stack_entries = 16
|
||||||
|
|
||||||
[collection_proxy]
|
[collection_proxy]
|
||||||
max_count = 8
|
max_count = 8
|
||||||
@ -96,24 +103,30 @@ max_count = 128
|
|||||||
max_count = 128
|
max_count = 128
|
||||||
|
|
||||||
[ios]
|
[ios]
|
||||||
|
launch_screen = /builtins/manifests/ios/LaunchScreen.storyboardc
|
||||||
pre_renderered_icons = 0
|
pre_renderered_icons = 0
|
||||||
bundle_identifier = example.unnamed
|
bundle_identifier = example.unnamed
|
||||||
infoplist = /builtins/manifests/ios/Info.plist
|
infoplist = /builtins/manifests/ios/Info.plist
|
||||||
|
default_language = en
|
||||||
|
localizations = en
|
||||||
|
|
||||||
[android]
|
[android]
|
||||||
version_code = 1
|
version_code = 1
|
||||||
minimum_sdk_version = 16
|
minimum_sdk_version = 16
|
||||||
target_sdk_version = 28
|
target_sdk_version = 29
|
||||||
package = com.insality.druid
|
package = com.insality.druid
|
||||||
manifest = /builtins/manifests/android/AndroidManifest.xml
|
manifest = /builtins/manifests/android/AndroidManifest.xml
|
||||||
iap_provider = GooglePlay
|
iap_provider = GooglePlay
|
||||||
input_method = HiddenInputField
|
input_method = HiddenInputField
|
||||||
immersive_mode = 0
|
immersive_mode = 0
|
||||||
|
display_cutout = 1
|
||||||
debuggable = 0
|
debuggable = 0
|
||||||
|
|
||||||
[osx]
|
[osx]
|
||||||
infoplist = /builtins/manifests/osx/Info.plist
|
infoplist = /builtins/manifests/osx/Info.plist
|
||||||
bundle_identifier = example.unnamed
|
bundle_identifier = example.unnamed
|
||||||
|
default_language = en
|
||||||
|
localizations = en
|
||||||
|
|
||||||
[windows]
|
[windows]
|
||||||
|
|
||||||
|
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -7,7 +7,7 @@
|
|||||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
<!-- The above 4 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
||||||
|
|
||||||
<title>druid 0.4.0</title>
|
<title>druid 0.5.0</title>
|
||||||
<style type='text/css'>
|
<style type='text/css'>
|
||||||
/* Disable user selection to avoid strange bug in Chrome on Windows:
|
/* Disable user selection to avoid strange bug in Chrome on Windows:
|
||||||
* Selecting a text outside the canvas, then clicking+draging would
|
* Selecting a text outside the canvas, then clicking+draging would
|
||||||
|
Loading…
x
Reference in New Issue
Block a user