Localize flag events

pull/13/head
Andrew Cassidy 4 years ago
parent 492a7d0317
commit c4679acd49
No known key found for this signature in database
GPG Key ID: 963017B38FD477A1

@ -3,8 +3,8 @@ Localization
en-us
{
// AGENCIES
#LOC_ConformalDecals_agent-peel-n-stick_title = Peel-N-Stik Adhesive Decals
#LOC_ConformalDecals_agent-peel-n-stick_description = Creators of premium stickers and decals for over 50 years, Peel-N-Stik only recently broke into the aerospace industry after noticing the increased demand for branding on rockets and aircraft.
#LOC_ConformalDecals_agent-peel-n-stick_title = Peel-N-Stik Adhesive Decals
#LOC_ConformalDecals_agent-peel-n-stick_description = Creators of premium stickers and decals for over 50 years, Peel-N-Stik only recently broke into the aerospace industry after noticing the increased demand for branding on rockets and aircraft.
// CATEGORIES
#LOC_ConformalDecals_category-decals_title = Decals
@ -15,6 +15,8 @@ Localization
#LOC_ConformalDecals_gui-opacity = Opacity
#LOC_ConformalDecals_gui-cutoff = Cutoff
#LOC_ConformalDecals_gui-aspectratio = Aspect Ratio
#LOC_ConformalDecals_gui-select-flag = Select Flag
#LOC_ConformalDecals_gui-reset-flag = Reset Flag
// PARTS

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:13a7bd932cbb3d6a0313eab6825908755df077b4ad0ff822dd0140fc3b69260c
oid sha256:7b5be72cb4f8a55ce4459666301cd068d1e5fde8c90525585bb7ce9d4f931fd0
size 35840

@ -58,13 +58,13 @@ namespace ConformalDecals {
base.OnDestroy();
}
[KSPEvent(guiActive = false, guiActiveEditor = true, guiName = "Select Flag")]
[KSPEvent(guiActive = false, guiActiveEditor = true, guiName = "#LOC_ConformalDecals_gui-select-flag")]
public void SelectFlag() {
var flagBrowser = (Instantiate((Object) (new FlagBrowserGUIButton(null, null, null, null)).FlagBrowserPrefab) as GameObject).GetComponent<FlagBrowser>();
flagBrowser.OnFlagSelected = OnCustomFlagSelected;
}
[KSPEvent(guiActive = false, guiActiveEditor = true, guiName = "Reset Flag")]
[KSPEvent(guiActive = false, guiActiveEditor = true, guiName = "#LOC_ConformalDecals_gui-reset-flag")]
public void ResetFlag() {
SetFlag(MissionFlagUrl);
SetFlagSymmetryCounterparts(MissionFlagUrl);

Loading…
Cancel
Save