mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-03 05:10:57 +00:00
7 lines
147 B
Swift
7 lines
147 B
Swift
|
public struct Environment {
|
||
|
public var cullFace: Face
|
||
|
public var lightDirection: SIMD3<Float>
|
||
|
|
||
|
public enum Face { case none, front, back }
|
||
|
}
|