mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-24 06:35:39 +00:00
Allow Terrain to be included in projects without a classname (#771)
Services, `StarterPlayerScripts`, and `StarterCharacterScripts` are currently special-cased to allow them to be specified in project files without a classname. This does the same to `Terrain` since it's a singleton in the same style as those.
This commit is contained in:
@@ -26,6 +26,7 @@
|
|||||||
* Fix PatchTree performance issues ([#755])
|
* Fix PatchTree performance issues ([#755])
|
||||||
* Don't override the initial enabled state for source diffing ([#760])
|
* Don't override the initial enabled state for source diffing ([#760])
|
||||||
* Added support for `Terrain.MaterialColors` ([#770])
|
* Added support for `Terrain.MaterialColors` ([#770])
|
||||||
|
* Allow `Terrain` to be specified without a classname ([#771])
|
||||||
|
|
||||||
[#761]: https://github.com/rojo-rbx/rojo/pull/761
|
[#761]: https://github.com/rojo-rbx/rojo/pull/761
|
||||||
[#745]: https://github.com/rojo-rbx/rojo/pull/745
|
[#745]: https://github.com/rojo-rbx/rojo/pull/745
|
||||||
@@ -52,6 +53,7 @@
|
|||||||
[#755]: https://github.com/rojo-rbx/rojo/pull/755
|
[#755]: https://github.com/rojo-rbx/rojo/pull/755
|
||||||
[#760]: https://github.com/rojo-rbx/rojo/pull/760
|
[#760]: https://github.com/rojo-rbx/rojo/pull/760
|
||||||
[#770]: https://github.com/rojo-rbx/rojo/pull/770
|
[#770]: https://github.com/rojo-rbx/rojo/pull/770
|
||||||
|
[#771]: https://github.com/rojo-rbx/rojo/pull/771
|
||||||
|
|
||||||
## [7.3.0] - April 22, 2023
|
## [7.3.0] - April 22, 2023
|
||||||
* Added `$attributes` to project format. ([#574])
|
* Added `$attributes` to project format. ([#574])
|
||||||
|
|||||||
@@ -301,6 +301,11 @@ fn infer_class_name(name: &str, parent_class: Option<&str>) -> Option<Cow<'stati
|
|||||||
if name == "StarterPlayerScripts" || name == "StarterCharacterScripts" {
|
if name == "StarterPlayerScripts" || name == "StarterCharacterScripts" {
|
||||||
return Some(Cow::Owned(name.to_owned()));
|
return Some(Cow::Owned(name.to_owned()));
|
||||||
}
|
}
|
||||||
|
} else if parent_class == "Workspace" {
|
||||||
|
// Workspace has a special Terrain class inside it
|
||||||
|
if name == "Terrain" {
|
||||||
|
return Some(Cow::Owned(name.to_owned()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
None
|
None
|
||||||
|
|||||||
Reference in New Issue
Block a user