()
| 6948 | }; |
| 6949 | |
| 6950 | function async_callback_gate() { |
| 6951 | |
| 6952 | var progress = { |
| 6953 | |
| 6954 | totalModels : total_models, |
| 6955 | totalTextures : total_textures, |
| 6956 | loadedModels : total_models - counter_models, |
| 6957 | loadedTextures : total_textures - counter_textures |
| 6958 | |
| 6959 | }; |
| 6960 | |
| 6961 | scope.callbackProgress( progress, result ); |
| 6962 | |
| 6963 | scope.onLoadProgress(); |
| 6964 | |
| 6965 | if( counter_models == 0 && counter_textures == 0 ) { |
| 6966 | |
| 6967 | callbackFinished( result ); |
| 6968 | |
| 6969 | } |
| 6970 | |
| 6971 | }; |
| 6972 | |
| 6973 | var callbackTexture = function( images ) { |
| 6974 |
no outgoing calls
no test coverage detected