open-ar-samples/cloud-anchors/app/src/main/java/it/norangeb/cloudanchors/CloudArFragment.kt

33 lines
1.2 KiB
Kotlin

/*
* Copyright (c) 2019, norangebit
*
* This file is part of cloud-anchors.
*
* cloud-anchors is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* cloud-anchors is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with cloud-anchors. If not, see <http://www.gnu.org/licenses/>
*
*/
package it.norangeb.cloudanchors
import com.google.ar.core.Config
import com.google.ar.core.Session
import com.google.ar.sceneform.ux.ArFragment
class CloudArFragment: ArFragment(){
override fun getSessionConfiguration(session: Session?): Config {
val config = super.getSessionConfiguration(session)
config.cloudAnchorMode = Config.CloudAnchorMode.ENABLED
return config
}
}