1
Extension Ideas / Re: A* as a Stencyl extension (with basic sample)
« on: October 11, 2013, 05:46:55 pm »Hi NotMao,
to patch the extension for Haxe 3.0, just go to stencyl directory, then enter in plaf\haxe\extensions\decision-making\ and open DecisionMaking.hx
Replace all
Hash<Float>
with
Map<String,Float>
and it should work.
I have used http://haxe.org/manual/haxe3/migration#hash-and-inthash-removal
to guide me in the process.
I hope this help you.
I was in the process of trying to figure that out and didn't know I needed to put the "String," there. After replacing all the Hash<Float> it worked perfectly.
Thanks AnemoneLabSNC!!!