All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bugvm.apple.scenekit.SCNSceneRenderer Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2013-2015 RoboVM AB
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.bugvm.apple.scenekit;

/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.foundation.*;
import com.bugvm.apple.uikit.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.coreanimation.*;
import com.bugvm.apple.dispatch.*;
import com.bugvm.apple.glkit.*;
import com.bugvm.apple.spritekit.*;
import com.bugvm.apple.opengles.*;
/**/

/**/

/**/
/**//**/
/**/public/**/ interface /**/SCNSceneRenderer/**/ 
    /**/extends NSObjectProtocol/**/ {

    /**/
    /**/
    /**/
    /**/
    /**//**/
    /**/
    @Property(selector = "scene")
    SCNScene getScene();
    @Property(selector = "setScene:")
    void setScene(SCNScene v);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Property(selector = "sceneTime")
    double getSceneTime();
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Property(selector = "setSceneTime:")
    void setSceneTime(double v);
    @Property(selector = "delegate")
    SCNSceneRendererDelegate getDelegate();
    @Property(selector = "setDelegate:", strongRef = true)
    void setDelegate(SCNSceneRendererDelegate v);
    @Property(selector = "isPlaying")
    boolean isPlaying();
    @Property(selector = "setPlaying:")
    void setPlaying(boolean v);
    @Property(selector = "loops")
    boolean loops();
    @Property(selector = "setLoops:")
    void setLoops(boolean v);
    @Property(selector = "pointOfView")
    SCNNode getPointOfView();
    @Property(selector = "setPointOfView:")
    void setPointOfView(SCNNode v);
    @Property(selector = "autoenablesDefaultLighting")
    boolean autoenablesDefaultLighting();
    @Property(selector = "setAutoenablesDefaultLighting:")
    void setAutoenablesDefaultLighting(boolean v);
    @Property(selector = "isJitteringEnabled")
    boolean isJitteringEnabled();
    @Property(selector = "setJitteringEnabled:")
    void setJitteringEnabled(boolean v);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Property(selector = "showsStatistics")
    boolean showsStatistics();
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Property(selector = "setShowsStatistics:")
    void setShowsStatistics(boolean v);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @WeaklyLinked
    @Property(selector = "overlaySKScene")
    SKScene getOverlaySKScene();
    /**
     * @since Available in iOS 8.0 and later.
     */
    @WeaklyLinked
    @Property(selector = "setOverlaySKScene:")
    void setOverlaySKScene(SKScene v);
    @WeaklyLinked
    @Property(selector = "context")
    EAGLContext getContext();
    /**/
    /**/
    @Method(selector = "hitTest:options:")
    NSArray hitTest(@ByVal CGPoint thePoint, SCNHitTestOptions options);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Method(selector = "isNodeInsideFrustum:withPointOfView:")
    boolean isNodeInsideFrustum(SCNNode node, SCNNode pointOfView);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Method(selector = "projectPoint:")
    @ByVal SCNVector3 projectPoint(@ByVal SCNVector3 point);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Method(selector = "unprojectPoint:")
    @ByVal SCNVector3 unprojectPoint(@ByVal SCNVector3 point);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Method(selector = "prepareObject:shouldAbortBlock:")
    boolean prepareObject(NSObject object, @Block Block0 block);
    /**
     * @since Available in iOS 8.0 and later.
     */
    @Method(selector = "prepareObjects:withCompletionHandler:")
    void prepareObjects(NSArray objects, @Block VoidBooleanBlock completionHandler);
    /**/
    /**/
    /**/
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy