This repository was archived by the owner on Sep 16, 2024. It is now read-only.
Error while compiling the game (bug fixed, but not in the end) #597
Unanswered
doggywatty
asked this question in
Q&A
Replies: 6 comments
|
aaaaaaaa aaa aa a Deprecations don't matter. You should be fine with polymod. Since the compiler expected an expression, perhaps try changing that line to |
0 replies
|
hey, now its different:
source/PlayState.hx:299: characters 37-45 : Array<flixel.FlxCamera> should
be flixel.FlxCamera
source/PlayState.hx:299: characters 37-45 : For function argument 'camera'
C:/Users/Usuario/haxelib/polymod/git/polymod/format/XMLMerge.hx:189:
characters 10-23 : Warning : This typedef is deprecated in favor of
haxe.xml.Access
C:/Users/Usuario/haxelib/polymod/git/polymod/format/XMLMerge.hx:189:
characters 30-43 : Warning : This typedef is deprecated in favor of
haxe.xml.Access
El mar, 25 de may. de 2021 a la(s) 21:46, Prokube ***@***.***)
escribió:
… *aaaaaaaa aaa aa a*
Deprecations don't matter. You should be fine with polymod.
Since the compiler expected an expression, perhaps try changing that line
to FlxG.cameras.setDefaultDrawTarget([cameras]);
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<https://github.com/KadeDev/Kade-Engine/issues/585#issuecomment-848375489>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ALFSVNN4FS4DNDHN6BUP3M3TPRAHZANCNFSM45QPX4FA>
.
|
0 replies
remove the square brackets i think |
0 replies
|
its the same
source/PlayState.hx:299: characters 37-44 : Array<flixel.FlxCamera> should
be flixel.FlxCamera
source/PlayState.hx:299: characters 37-44 : For function argument 'camera'
C:/Users/Usuario/haxelib/polymod/git/polymod/format/XMLMerge.hx:189:
characters 10-23 : Warning : This typedef is deprecated in favor of
haxe.xml.Access
C:/Users/Usuario/haxelib/polymod/git/polymod/format/XMLMerge.hx:189:
characters 30-43 : Warning : This typedef is deprecated in favor of
haxe.xml.Access
El mar, 25 de may. de 2021 a la(s) 22:02, Prokube ***@***.***)
escribió:
… hey, now its different: source/PlayState.hx:299: characters 37-45 :
Array<flixel.FlxCamera> should be flixel.FlxCamera source/PlayState.hx:299:
characters 37-45 : For function argument 'camera'
remove the square brackets i think
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<https://github.com/KadeDev/Kade-Engine/issues/585#issuecomment-848380329>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ALFSVNIX6QH6SGOYU42JY4TTPRCCNANCNFSM45QPX4FA>
.
|
0 replies
|
hmmm... well, i have no idea. try compiling the latest source code and see if that fixes anything. I hate that this is how i contribute to issues, but it's pretty much the only advice i have most of the time, soooo |
0 replies
|
i tried the latest source code and nothing. nothing is working
El mar, 25 de may. de 2021 a la(s) 23:07, Prokube ***@***.***)
escribió:
… hmmm... well, i have no idea. try compiling the latest source code and see
if that fixes anything. I hate that this is how i contribute to issues, but
it's pretty much the only advice i have most of the time, soooo
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<https://github.com/KadeDev/Kade-Engine/issues/585#issuecomment-848401052>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ALFSVNPGOWNGMX4XM3VAHLTTPRJW5ANCNFSM45QPX4FA>
.
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Well, when I was compiling the game, but I got an error: C:/Users/Usuario/haxelib/polymod/git/polymod/format/XMLMerge.hx:189: characters 10-23 : Warning : This typedef is deprecated in favor of haxe.xml.Access
C:/Users/Usuario/haxelib/polymod/git/polymod/format/XMLMerge.hx:189: characters 30-43 : Warning : This typedef is deprecated in favor of haxe.xml.Access
source/PlayState.hx:299: characters 3-39 : Warning :
FlxCamera.defaultCamerasis deprecated, useFlxG.cameras.setDefaultDrawTargetinsteadC:\Users\Usuario\Downloads\Kade-Engine-master\Kade-Engine-master\export\release\windows\obj>setlocal enabledelayedexpansion
Error: 64bit is not automatically supported for this version of VC. Set HXCPP_MSVC_CUSTOM and manually configure the executable, library and include paths
Error: Error: 64bit is not automatically supported for this version of VC. Set HXCPP_MSVC_CUSTOM and manually configure the executable, library and include paths
I solved it, I had to go to PlayState.hx and in line 299, it said FlxCamera.defaultCameras, I had to change to FlxG.cameras.setDefaultDrawTarget, it was solved but it tells me this ANOTHER ERROR:
source/PlayState.hx:299: characters 3-36 : Cannot rebind this method : please use 'dynamic' before method declaration
C:/Users/Usuario/haxelib/polymod/git/polymod/format/XMLMerge.hx:189: characters 10-23 : Warning : This typedef is deprecated in favor of haxe.xml.Access
C:/Users/Usuario/haxelib/polymod/git/polymod/format/XMLMerge.hx:189: characters 30-43 : Warning : This typedef is deprecated in favor of haxe.xml.Access
I solved it, again, in line 299 it said: FlxG.cameras.setDefaultDrawTarget = [cameras];
then where it says cameras, change it to dynamic
it was fixed!
But it gave me another error:
source/PlayState.hx:299: characters 40-47 : Expected expression
I dont know this part. Can someone help me?
All reactions