Many fixes to make exported scenes work better, still buggy.

This commit is contained in:
Juan Linietsky
2017-02-15 08:29:46 -03:00
parent d7fd86d51a
commit da11d6d9e8
22 changed files with 238 additions and 604 deletions

View File

@ -754,6 +754,12 @@ bool StreamTexture::has_alpha() const {
return false;
}
Image StreamTexture::get_data() const {
return VS::get_singleton()->texture_get_data(texture);
}
void StreamTexture::set_flags(uint32_t p_flags){
}