Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions modeling-cmds/src/def_enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,13 @@ define_modeling_cmd_enum! {
/// How to transform each repeated solid.
/// The 0th transform will create the first copy of the entity.
/// The total number of (optional) repetitions equals the size of this list.
#[serde(default)]
pub transform: Vec<crate::shared::Transform>,
/// Alternatively, you could set this key instead.
/// If you want to use multiple transforms per item.
/// If this is non-empty then the `transform` key must be empty, and vice-versa.
#[serde(default)]
pub transforms: Vec<Vec<crate::shared::Transform>>,
}

/// Create a linear pattern using this entity.
Expand Down