Raltime compilation, disable create constructors

Started by
1 comment, last by FDsagizi 12 years, 5 months ago
hello every one!

sorry for my EN!rolleyes.gif

i'm use realtime compilation scrtips for detected error in write code ( as c# and java )

it is super work, but - i have problem...

class A{
A(){
Print( "some text" );
}
}

A global_var_a;

after compilation, in console show "some text" - compiler create variable global_var_a - it's correct! But - how disable create global var's ?
Advertisement

engine->SetEngineProperty(asEP_INIT_GLOBAL_VARS_AFTER_BUILD, false);


:)

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game



engine->SetEngineProperty(asEP_INIT_GLOBAL_VARS_AFTER_BUILD, false);


:)


[color=#333333][font=arial, sans-serif]

thank you! [/font]

This topic is closed to new replies.

Advertisement