mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
manual pushing args to the app. Removed some debugging printouts
This commit is contained in:
parent
8fff3476ec
commit
29ec5486f6
2 changed files with 3 additions and 16 deletions
|
@ -14,14 +14,6 @@ public class InterfaceActivity extends OculusMobileActivity {
|
|||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
if(this.getIntent().hasExtra("applicationArguments")){
|
||||
System.out.println("QQQ_ InterfaceActivity: args EXISTS");
|
||||
System.out.println("QQQ_ "+ this.getIntent().getStringExtra("applicationArguments"));
|
||||
}
|
||||
else{
|
||||
System.out.println("QQQ_ InterfaceActivity: NO argmument");
|
||||
}
|
||||
|
||||
HifiUtils.upackAssets(getAssets(), getCacheDir().getAbsolutePath());
|
||||
super.onCreate(savedInstanceState);
|
||||
}
|
||||
|
|
|
@ -39,19 +39,14 @@ public class OculusMobileActivity extends QtActivity implements SurfaceHolder.Ca
|
|||
private SurfaceHolder mSurfaceHolder;
|
||||
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
if(this.getIntent().hasExtra("applicationArguments")){
|
||||
System.out.println("QQQ_ OculusMobileActivity has arguments");
|
||||
System.out.println("QQQ_ "+ this.getIntent().getStringExtra("applicationArguments"));
|
||||
|
||||
if(getIntent().hasExtra("applicationArguments")){
|
||||
super.APPLICATION_PARAMETERS=getIntent().getStringExtra("applicationArguments");
|
||||
}
|
||||
else{
|
||||
System.out.println("QQQ_ OculusMobileActivity has NO arguments");
|
||||
}
|
||||
|
||||
|
||||
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
|
||||
Log.w(TAG, "QQQ onCreate");
|
||||
// Create a native surface for VR rendering (Qt GL surfaces are not suitable
|
||||
// because of the lack of fine control over the surface callbacks)
|
||||
|
|
Loading…
Reference in a new issue