(state: &EditorState)
| 2057 | users |
| 2058 | ); |
| 2059 | } |
| 2060 | match kind { |
| 2061 | "scene" | "script" | "resource" | "mesh" | "image" | "audio" => { |
| 2062 | format!("{path}\n{users}") |
| 2063 | } |
| 2064 | _ => users, |
| 2065 | } |
| 2066 | } |
| 2067 | |
| 2068 | pub fn script_vars_edit_text(fields: &[(SceneFieldName, SceneValue)]) -> String { |
| 2069 | if fields.is_empty() { |
no test coverage detected