openfl / lime-vscode-extension

Visual Studio Code extension for OpenFL and Lime projects written in Haxe
https://marketplace.visualstudio.com/items?itemName=openfl.lime-vscode-extension
MIT License
28 stars 4 forks source link

Error Lime #107

Closed NotSomeBlox closed 3 months ago

NotSomeBlox commented 4 months ago

lIME Error This happened when loading VS Code when loading a project containing Haxe code

player-03 commented 4 months ago

What version of Flixel do you have installed? You can try haxelib path flixel:5.2.2 to see if you have 5.2.2.

NotSomeBlox commented 4 months ago

5.5.0

NotSomeBlox commented 4 months ago

image Here's the popup with the error, also it still shows up

joshtynjala commented 4 months ago

I'm guessing that your project.xml specifies flixel 5.2.2 like this:

<haxelib name="flixel" version="5.2.2" />

You have flixel 5.5.0, though. So you have the wrong version installed.

You have two options:

1) Install flixel 5.2.2 with haxelib install flixel 5.2.2 2) Change your project.xml to specify 5.5.0 instead of 5.2.2.

I don't know which one is right for your needs, but either one should fix that particular error.