Package apple.spritekit.protocol
Interface SKViewDelegate
-
- All Known Subinterfaces:
ARSKViewDelegate
public interface SKViewDelegate
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default booleanviewShouldRenderAtTime(SKView view, double time)Allows the client to dynamically control the render rate.
-
-
-
Method Detail
-
viewShouldRenderAtTime
default boolean viewShouldRenderAtTime(SKView view, double time)
Allows the client to dynamically control the render rate. return YES to initiate an update and render for the target time. return NO to skip update and render for this target time.
-
-