Skip to content

Commit

Permalink
pixi driver removing __ hidden assets from Assets autobuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
hypersurge committed Mar 15, 2018
1 parent 8103e40 commit faee41e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/awe6/core/drivers/pixijs/AssetsBuilder.hx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class AssetsBuilder
var l_extension = l_fileName.substr( -3, 3 );
if ( _audioFormats.indexOf( l_extension ) == -1 )
{
l_fileReferences.push( new _HelperFileRef( p_directory + l_fileName, p_rootDirectory ) );
if ( l_fileName.substr( 0, 2 ) != "__" ) l_fileReferences.push( new _HelperFileRef( p_directory + l_fileName, p_rootDirectory ) );
}
else
{
Expand Down

0 comments on commit faee41e

Please sign in to comment.