You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Remove redundant semicolons from Kotlin/gradle files
This commit is contained in:
@@ -194,17 +194,17 @@ final String VALUE_SEPARATOR_REGEX = "\\|"
|
|||||||
|
|
||||||
// get the list of ABIs the project should be exported to
|
// get the list of ABIs the project should be exported to
|
||||||
ext.getExportEnabledABIs = { ->
|
ext.getExportEnabledABIs = { ->
|
||||||
String enabledABIs = project.hasProperty("export_enabled_abis") ? project.property("export_enabled_abis") : "";
|
String enabledABIs = project.hasProperty("export_enabled_abis") ? project.property("export_enabled_abis") : ""
|
||||||
if (enabledABIs == null || enabledABIs.isEmpty()) {
|
if (enabledABIs == null || enabledABIs.isEmpty()) {
|
||||||
enabledABIs = "armeabi-v7a|arm64-v8a|x86|x86_64|"
|
enabledABIs = "armeabi-v7a|arm64-v8a|x86|x86_64|"
|
||||||
}
|
}
|
||||||
Set<String> exportAbiFilter = [];
|
Set<String> exportAbiFilter = []
|
||||||
for (String abi_name : enabledABIs.split(VALUE_SEPARATOR_REGEX)) {
|
for (String abi_name : enabledABIs.split(VALUE_SEPARATOR_REGEX)) {
|
||||||
if (!abi_name.trim().isEmpty()){
|
if (!abi_name.trim().isEmpty()){
|
||||||
exportAbiFilter.add(abi_name);
|
exportAbiFilter.add(abi_name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return exportAbiFilter;
|
return exportAbiFilter
|
||||||
}
|
}
|
||||||
|
|
||||||
ext.getExportPath = {
|
ext.getExportPath = {
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ ext {
|
|||||||
String versionStatus = System.getenv("GODOT_VERSION_STATUS")
|
String versionStatus = System.getenv("GODOT_VERSION_STATUS")
|
||||||
if (versionStatus != null && !versionStatus.isEmpty()) {
|
if (versionStatus != null && !versionStatus.isEmpty()) {
|
||||||
try {
|
try {
|
||||||
buildNumber = Integer.parseInt(versionStatus.replaceAll("[^0-9]", ""));
|
buildNumber = Integer.parseInt(versionStatus.replaceAll("[^0-9]", ""))
|
||||||
} catch (NumberFormatException ignored) {
|
} catch (NumberFormatException ignored) {
|
||||||
buildNumber = 0
|
buildNumber = 0
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -127,7 +127,7 @@ open class GodotEditor : GodotActivity() {
|
|||||||
*/
|
*/
|
||||||
protected open fun checkForProjectPermissionsToEnable() {
|
protected open fun checkForProjectPermissionsToEnable() {
|
||||||
// Check for RECORD_AUDIO permission
|
// Check for RECORD_AUDIO permission
|
||||||
val audioInputEnabled = java.lang.Boolean.parseBoolean(GodotLib.getGlobal("audio/driver/enable_input"));
|
val audioInputEnabled = java.lang.Boolean.parseBoolean(GodotLib.getGlobal("audio/driver/enable_input"))
|
||||||
if (audioInputEnabled) {
|
if (audioInputEnabled) {
|
||||||
PermissionsUtil.requestPermission(Manifest.permission.RECORD_AUDIO, this)
|
PermissionsUtil.requestPermission(Manifest.permission.RECORD_AUDIO, this)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ android {
|
|||||||
case "dev":
|
case "dev":
|
||||||
default:
|
default:
|
||||||
sconsTarget += "_debug"
|
sconsTarget += "_debug"
|
||||||
break;
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -150,7 +150,7 @@ class Godot(private val context: Context) : SensorEventListener {
|
|||||||
private var useApkExpansion = false
|
private var useApkExpansion = false
|
||||||
private var useImmersive = false
|
private var useImmersive = false
|
||||||
private var useDebugOpengl = false
|
private var useDebugOpengl = false
|
||||||
private var darkMode = false;
|
private var darkMode = false
|
||||||
|
|
||||||
private var containerLayout: FrameLayout? = null
|
private var containerLayout: FrameLayout? = null
|
||||||
var renderView: GodotRenderView? = null
|
var renderView: GodotRenderView? = null
|
||||||
@@ -290,7 +290,7 @@ class Godot(private val context: Context) : SensorEventListener {
|
|||||||
initializationStarted = false
|
initializationStarted = false
|
||||||
throw e
|
throw e
|
||||||
} finally {
|
} finally {
|
||||||
endBenchmarkMeasure("Startup", "Godot::onCreate");
|
endBenchmarkMeasure("Startup", "Godot::onCreate")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -613,7 +613,7 @@ class Godot(private val context: Context) : SensorEventListener {
|
|||||||
// These properties are defined after Godot setup completion, so we retrieve them here.
|
// These properties are defined after Godot setup completion, so we retrieve them here.
|
||||||
val longPressEnabled = java.lang.Boolean.parseBoolean(GodotLib.getGlobal("input_devices/pointing/android/enable_long_press_as_right_click"))
|
val longPressEnabled = java.lang.Boolean.parseBoolean(GodotLib.getGlobal("input_devices/pointing/android/enable_long_press_as_right_click"))
|
||||||
val panScaleEnabled = java.lang.Boolean.parseBoolean(GodotLib.getGlobal("input_devices/pointing/android/enable_pan_and_scale_gestures"))
|
val panScaleEnabled = java.lang.Boolean.parseBoolean(GodotLib.getGlobal("input_devices/pointing/android/enable_pan_and_scale_gestures"))
|
||||||
val rotaryInputAxis = java.lang.Integer.parseInt(GodotLib.getGlobal("input_devices/pointing/android/rotary_input_scroll_axis"));
|
val rotaryInputAxis = java.lang.Integer.parseInt(GodotLib.getGlobal("input_devices/pointing/android/rotary_input_scroll_axis"))
|
||||||
|
|
||||||
runOnUiThread {
|
runOnUiThread {
|
||||||
renderView?.inputHandler?.apply {
|
renderView?.inputHandler?.apply {
|
||||||
|
|||||||
@@ -142,7 +142,7 @@ internal class VkThread(private val vkSurfaceView: VkSurfaceView, private val vk
|
|||||||
fun onSurfaceChanged(width: Int, height: Int) {
|
fun onSurfaceChanged(width: Int, height: Int) {
|
||||||
lock.withLock {
|
lock.withLock {
|
||||||
hasSurface = true
|
hasSurface = true
|
||||||
surfaceChanged = true;
|
surfaceChanged = true
|
||||||
this.width = width
|
this.width = width
|
||||||
this.height = height
|
this.height = height
|
||||||
|
|
||||||
@@ -179,7 +179,7 @@ internal class VkThread(private val vkSurfaceView: VkSurfaceView, private val vk
|
|||||||
// blocking the thread lifecycle by holding onto the lock.
|
// blocking the thread lifecycle by holding onto the lock.
|
||||||
if (eventQueue.isNotEmpty()) {
|
if (eventQueue.isNotEmpty()) {
|
||||||
event = eventQueue.removeAt(0)
|
event = eventQueue.removeAt(0)
|
||||||
break;
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
if (readyToDraw) {
|
if (readyToDraw) {
|
||||||
@@ -199,7 +199,7 @@ internal class VkThread(private val vkSurfaceView: VkSurfaceView, private val vk
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Break out of the loop so drawing can occur without holding onto the lock.
|
// Break out of the loop so drawing can occur without holding onto the lock.
|
||||||
break;
|
break
|
||||||
} else if (rendererResumed) {
|
} else if (rendererResumed) {
|
||||||
// If we aren't ready to draw but are resumed, that means we either lost a surface
|
// If we aren't ready to draw but are resumed, that means we either lost a surface
|
||||||
// or the app was paused.
|
// or the app was paused.
|
||||||
|
|||||||
Reference in New Issue
Block a user