๐Ÿ…ฟ๏ธLearn to Code 2 โŸฉ Animatable

Declaration

// โญ๏ธ defined in Item.swift
public protocol Animatable {

    func reset()
    
    /// Each `Item` describes its own actions.
    func placeAction(withDuration duration: TimeInterval) -> SCNAction
    func removeAction(withDuration duration: TimeInterval) -> SCNAction
}

โ†˜๏ธ inherited by๏ผš๐Ÿ…ฟ๏ธ Item

Last updated