From c4cfe94aec7edc867b066669ce121bdd35f90b45 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Sat, 18 Oct 2014 13:47:31 -0700 Subject: [PATCH] Hide help completion from FlashDevelop --- templates/haxe/DefaultAssetLibrary.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/haxe/DefaultAssetLibrary.hx b/templates/haxe/DefaultAssetLibrary.hx index 5a7e27fb5..74bd3e58e 100644 --- a/templates/haxe/DefaultAssetLibrary.hx +++ b/templates/haxe/DefaultAssetLibrary.hx @@ -637,13 +637,13 @@ class DefaultAssetLibrary extends AssetLibrary { #if !display #if flash -::foreach assets::::if (embed)::::if (type == "image")::@:keep @:bind class __ASSET__::flatName:: extends flash.display.BitmapData { public function new () { super (0, 0, true, 0); } }::else::@:keep @:bind class __ASSET__::flatName:: extends ::flashClass:: { }::end::::end:: +::foreach assets::::if (embed)::::if (type == "image")::@:keep @:bind #if display private #end class __ASSET__::flatName:: extends flash.display.BitmapData { public function new () { super (0, 0, true, 0); } }::else::@:keep @:bind #if display private #end class __ASSET__::flatName:: extends ::flashClass:: { }::end::::end:: ::end:: #elseif html5 #if openfl -::foreach assets::::if (type == "font")::@:keep class __ASSET__::flatName:: extends openfl.text.Font { public function new () { super (); fontName = "::id::"; } } ::end:: +::foreach assets::::if (type == "font")::@:keep #if display private #end class __ASSET__::flatName:: extends openfl.text.Font { public function new () { super (); fontName = "::id::"; } } ::end:: ::end:: #end