pub trait IGmapSpotManagerMethods: IGmapSpotManager {
Show 23 methods
// Provided methods
fn on_create(self) { ... }
fn attach_chapter_to_spot(self) { ... }
fn attach_models(self) { ... }
fn attach_models_chapter(self, spot: impl Into<GmapSpot>) { ... }
fn set_next_spots(self, paths: impl Into<GmapPathCollection>) { ... }
fn check_change(self) -> GmapSpot { ... }
fn find_spot_by_spot_id(self, spot_id: impl Into<Il2CppString>) -> GmapSpot { ... }
fn find_spot_by_cid(self, cid: impl Into<Il2CppString>) -> GmapSpot { ... }
fn find_spot(self, chapter: impl Into<ChapterData>) -> GmapSpot { ... }
fn get_newest_spot(self) -> GmapSpot { ... }
fn get_encount_spot_one(self) -> GmapSpot { ... }
fn get_encount_count(
self,
mode: impl Into<GmapMode_Mode>,
rare_type: impl Into<EncountUnitData_RareType>,
) -> i32 { ... }
fn get_sub_spot_one(self) -> GmapSpot { ... }
fn get_route(
self,
start: impl Into<GmapSpot>,
end: impl Into<GmapSpot>,
) -> List_1<GmapSpot> { ... }
fn put_mob_units(self) { ... }
fn unload_mob_units(self) { ... }
fn get_settable_spot_count(self) -> i32 { ... }
fn get_dispos_count(self) -> i32 { ... }
fn calculate_dispos_count(self) -> i32 { ... }
fn set_dispos(self) { ... }
fn on_serialize(self, stream: impl Into<Stream_2>) { ... }
fn on_deserialize(
self,
stream: impl Into<Stream_2>,
version: impl Into<i32>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn attach_chapter_to_spot(self)
fn attach_chapter_to_spot(self)
AttachChapterToSpot() overload
Sourcefn attach_models(self)
fn attach_models(self)
AttachModels() overload
Sourcefn attach_models_chapter(self, spot: impl Into<GmapSpot>)
fn attach_models_chapter(self, spot: impl Into<GmapSpot>)
AttachModelsChapter(crate::app::gmapspot::GmapSpot) overload
Sourcefn set_next_spots(self, paths: impl Into<GmapPathCollection>)
fn set_next_spots(self, paths: impl Into<GmapPathCollection>)
SetNextSpots(crate::app::gmap::gmappathcollection::GmapPathCollection) overload
Sourcefn check_change(self) -> GmapSpot
fn check_change(self) -> GmapSpot
CheckChange() overload
Sourcefn find_spot_by_spot_id(self, spot_id: impl Into<Il2CppString>) -> GmapSpot
fn find_spot_by_spot_id(self, spot_id: impl Into<Il2CppString>) -> GmapSpot
FindSpotBySpotID(::unity::Il2CppString) overload
Sourcefn find_spot_by_cid(self, cid: impl Into<Il2CppString>) -> GmapSpot
fn find_spot_by_cid(self, cid: impl Into<Il2CppString>) -> GmapSpot
FindSpotByCID(::unity::Il2CppString) overload
Sourcefn find_spot(self, chapter: impl Into<ChapterData>) -> GmapSpot
fn find_spot(self, chapter: impl Into<ChapterData>) -> GmapSpot
FindSpot(crate::app::chapterdata::ChapterData) overload
Sourcefn get_newest_spot(self) -> GmapSpot
fn get_newest_spot(self) -> GmapSpot
GetNewestSpot() overload
Sourcefn get_encount_spot_one(self) -> GmapSpot
fn get_encount_spot_one(self) -> GmapSpot
GetEncountSpotOne() overload
Sourcefn get_encount_count(
self,
mode: impl Into<GmapMode_Mode>,
rare_type: impl Into<EncountUnitData_RareType>,
) -> i32
fn get_encount_count( self, mode: impl Into<GmapMode_Mode>, rare_type: impl Into<EncountUnitData_RareType>, ) -> i32
GetEncountCount(crate::app::gmapmode::GmapMode_Mode, crate::app::encountunitdata::EncountUnitData_RareType) overload
Sourcefn get_sub_spot_one(self) -> GmapSpot
fn get_sub_spot_one(self) -> GmapSpot
GetSubSpotOne() overload
Sourcefn get_route(
self,
start: impl Into<GmapSpot>,
end: impl Into<GmapSpot>,
) -> List_1<GmapSpot>
fn get_route( self, start: impl Into<GmapSpot>, end: impl Into<GmapSpot>, ) -> List_1<GmapSpot>
GetRoute(crate::app::gmapspot::GmapSpot, crate::app::gmapspot::GmapSpot) overload
Sourcefn put_mob_units(self)
fn put_mob_units(self)
PutMobUnits() overload
Sourcefn unload_mob_units(self)
fn unload_mob_units(self)
UnloadMobUnits() overload
Sourcefn get_settable_spot_count(self) -> i32
fn get_settable_spot_count(self) -> i32
GetSettableSpotCount() overload
Sourcefn get_dispos_count(self) -> i32
fn get_dispos_count(self) -> i32
GetDisposCount() overload
Sourcefn calculate_dispos_count(self) -> i32
fn calculate_dispos_count(self) -> i32
CalculateDisposCount() overload
Sourcefn set_dispos(self)
fn set_dispos(self)
SetDispos() overload
Sourcefn on_serialize(self, stream: impl Into<Stream_2>)
fn on_serialize(self, stream: impl Into<Stream_2>)
OnSerialize(crate::app::stream_2::Stream_2) overload
Sourcefn on_deserialize(self, stream: impl Into<Stream_2>, version: impl Into<i32>)
fn on_deserialize(self, stream: impl Into<Stream_2>, version: impl Into<i32>)
OnDeserialize(crate::app::stream_2::Stream_2, i32) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IGmapSpotManager> IGmapSpotManagerMethods for __T
app-gmapspotmanager only.