Worked on grotto kitchen scene
parent
b7270fc07f
commit
c826479cc2
|
@ -30,18 +30,18 @@ Tree("32_Grotto_Kueche_Intro") {
|
||||||
Composite(Race) {
|
Composite(Race) {
|
||||||
Composite(Sequence) {
|
Composite(Sequence) {
|
||||||
// Pilze ins Wasser Glas legen
|
// Pilze ins Wasser Glas legen
|
||||||
// GrabEvent auf Pilz?
|
BTC.Run("NamedGrabEvent.INTERACTABLES.Steinpilze")
|
||||||
BTC.Set("Collider.INTERACTABLES.GlasWasser", "otherTag", "Steinpilze")
|
BTC.Set("Collider.INTERACTABLES.GlassWasser", "otherTag", "Steinpilze")
|
||||||
BTC.Run("Collider.INTERACTABLES.GlasWasser")
|
BTC.Run("Collider.INTERACTABLES.GlassWasser")
|
||||||
//BTC.GetKeyDown("Return")
|
// BTC.GetKeyDown("Return")
|
||||||
|
|
||||||
}
|
}
|
||||||
Composite(Sequence) {
|
Composite(Sequence) {
|
||||||
// Keine Reaction
|
// Keine Reaction
|
||||||
BTC.Wait(5)
|
BTC.Wait(5)
|
||||||
BTC.Run("AudioSource.AUDIO.Kueche1FSteinpilze")
|
BTC.Run("AudioSource.AUDIO.Kueche1FSteinpilze")
|
||||||
BTC.Set("Collider.INTERACTABLES.Wasser", "otherTag", "Steinpilze")
|
BTC.Set("Collider.INTERACTABLES.GlassWasser", "otherTag", "Steinpilze")
|
||||||
BTC.Run("Collider.INTERACTABLES.Wasser")
|
BTC.Run("Collider.INTERACTABLES.GlassWasser")
|
||||||
//BTC.GetKeyDown("Return")
|
//BTC.GetKeyDown("Return")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -206,13 +206,68 @@ Tree("32_Grotto_Kueche_Kochen_Anzahl") {
|
||||||
|
|
||||||
Tree("32_Grotto_Kueche_Zusammen_Kochen") {
|
Tree("32_Grotto_Kueche_Zusammen_Kochen") {
|
||||||
Composite(Sequence) {
|
Composite(Sequence) {
|
||||||
BTC.GetKeyDown("Return")
|
BTC.Run("AudioSource.AUDIO.Kueche1FZusammenKo")
|
||||||
|
|
||||||
|
// Risotto in Topf geben
|
||||||
|
BTC.Run("NamedGrabEvent.INTERACTABLES.Risotto")
|
||||||
|
BTC.Set("Collider.INTERACTABLES.Topf", "otherTag", "Risotto")
|
||||||
|
BTC.Run("Collider.INTERACTABLES.Topf")
|
||||||
|
|
||||||
|
// Ruehren
|
||||||
|
BTC.Run("NamedGrabEvent.INTERACTABLES.Loeffel")
|
||||||
|
BTC.Set("Collider.INTERACTABLES.Topf", "otherTag", "Loeffel")
|
||||||
|
BTC.Run("Collider.INTERACTABLES.Topf")
|
||||||
|
BTC.Run("AudioSource.AUDIO.Kueche2FZusammenKo")
|
||||||
|
|
||||||
|
// Wein leuchtet
|
||||||
|
// ...
|
||||||
|
|
||||||
|
// Wein greifen
|
||||||
|
BTC.Run("NamedGrabEvent.INTERACTABLES.Weisswein")
|
||||||
|
|
||||||
|
// Wein in Topf giessen
|
||||||
|
// ...
|
||||||
|
BTC.Run("AudioSource.AUDIO.Kueche3FZusammenKo")
|
||||||
|
|
||||||
|
// Wasserkocher leuchtet
|
||||||
|
// ...
|
||||||
|
|
||||||
|
// Bouillon greifen
|
||||||
|
BTC.Run("NamedGrabEvent.INTERACTABLES.Bouillon")
|
||||||
|
|
||||||
|
// Bouillon in Topf geben
|
||||||
|
// ...
|
||||||
|
BTC.Run("AudioSource.AUDIO.Kueche4FZusammenKo")
|
||||||
|
|
||||||
|
// Glas Wasser mit Steinpilze in Topf geben
|
||||||
|
BTC.Set("Collider.INTERACTABLES.Topf", "otherTag", "Steinpilze")
|
||||||
|
BTC.Run("Collider.INTERACTABLES.Topf")
|
||||||
|
|
||||||
|
// Pfanne rueber stellen
|
||||||
|
// ...
|
||||||
|
BTC.Run("AudioSource.AUDIO.Kueche5FZusammenKo")
|
||||||
|
BTC.Run("AudioSource.AUDIO.Kueche6FZusammenKo")
|
||||||
|
|
||||||
|
// --- Outro ---
|
||||||
|
BTC.Run("AudioSource.AUDIO.Kueche1GOutro")
|
||||||
|
BTC.Run("AudioSource.AUDIO.Kueche2GOutro")
|
||||||
|
|
||||||
|
// Name sagen
|
||||||
|
BTC.Set("TextMeshPro.HANDMENU.Option1Button", "text", "Mein Name ist User.")
|
||||||
|
BTC.Show("GO.HANDMENU.Option1Button")
|
||||||
|
Composite(Race) {
|
||||||
|
BTC.Run("NamedEventTrigger.HANDMENU.Option1Button")
|
||||||
|
BTC.Wait(5)
|
||||||
|
}
|
||||||
|
BTC.Hide("GO.HANDMENU.Option1Button")
|
||||||
|
BTC.Run("AudioSource.AUDIO.Kueche3GOutro")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Tree("32_Grotto_Kueche_Selbststaendig_Kochen") {
|
Tree("32_Grotto_Kueche_Selbststaendig_Kochen") {
|
||||||
Composite(Sequence) {
|
Composite(Sequence) {
|
||||||
BTC.GetKeyDown("Return")
|
BTC.Run("AudioSource.AUDIO.Kueche1FSelbststae")
|
||||||
|
// Selbstaendig kochen...
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,109 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0ec434b2db3384aefa7f647a018630ba
|
||||||
|
ModelImporter:
|
||||||
|
serializedVersion: 22200
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
materials:
|
||||||
|
materialImportMode: 2
|
||||||
|
materialName: 0
|
||||||
|
materialSearch: 1
|
||||||
|
materialLocation: 1
|
||||||
|
animations:
|
||||||
|
legacyGenerateAnimations: 4
|
||||||
|
bakeSimulation: 0
|
||||||
|
resampleCurves: 1
|
||||||
|
optimizeGameObjects: 0
|
||||||
|
removeConstantScaleCurves: 0
|
||||||
|
motionNodeName:
|
||||||
|
rigImportErrors:
|
||||||
|
rigImportWarnings:
|
||||||
|
animationImportErrors:
|
||||||
|
animationImportWarnings:
|
||||||
|
animationRetargetingWarnings:
|
||||||
|
animationDoRetargetingWarnings: 0
|
||||||
|
importAnimatedCustomProperties: 0
|
||||||
|
importConstraints: 0
|
||||||
|
animationCompression: 1
|
||||||
|
animationRotationError: 0.5
|
||||||
|
animationPositionError: 0.5
|
||||||
|
animationScaleError: 0.5
|
||||||
|
animationWrapMode: 0
|
||||||
|
extraExposedTransformPaths: []
|
||||||
|
extraUserProperties: []
|
||||||
|
clipAnimations: []
|
||||||
|
isReadable: 0
|
||||||
|
meshes:
|
||||||
|
lODScreenPercentages: []
|
||||||
|
globalScale: 1
|
||||||
|
meshCompression: 0
|
||||||
|
addColliders: 0
|
||||||
|
useSRGBMaterialColor: 1
|
||||||
|
sortHierarchyByName: 1
|
||||||
|
importPhysicalCameras: 1
|
||||||
|
importVisibility: 1
|
||||||
|
importBlendShapes: 1
|
||||||
|
importCameras: 1
|
||||||
|
importLights: 1
|
||||||
|
nodeNameCollisionStrategy: 1
|
||||||
|
fileIdsGeneration: 2
|
||||||
|
swapUVChannels: 0
|
||||||
|
generateSecondaryUV: 0
|
||||||
|
useFileUnits: 1
|
||||||
|
keepQuads: 0
|
||||||
|
weldVertices: 1
|
||||||
|
bakeAxisConversion: 0
|
||||||
|
preserveHierarchy: 0
|
||||||
|
skinWeightsMode: 0
|
||||||
|
maxBonesPerVertex: 4
|
||||||
|
minBoneWeight: 0.001
|
||||||
|
optimizeBones: 1
|
||||||
|
meshOptimizationFlags: -1
|
||||||
|
indexFormat: 0
|
||||||
|
secondaryUVAngleDistortion: 8
|
||||||
|
secondaryUVAreaDistortion: 15.000001
|
||||||
|
secondaryUVHardAngle: 88
|
||||||
|
secondaryUVMarginMethod: 1
|
||||||
|
secondaryUVMinLightmapResolution: 40
|
||||||
|
secondaryUVMinObjectScale: 1
|
||||||
|
secondaryUVPackMargin: 4
|
||||||
|
useFileScale: 1
|
||||||
|
strictVertexDataChecks: 0
|
||||||
|
tangentSpace:
|
||||||
|
normalSmoothAngle: 60
|
||||||
|
normalImportMode: 0
|
||||||
|
tangentImportMode: 3
|
||||||
|
normalCalculationMode: 4
|
||||||
|
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
|
||||||
|
blendShapeNormalImportMode: 1
|
||||||
|
normalSmoothingSource: 0
|
||||||
|
referencedClips: []
|
||||||
|
importAnimation: 1
|
||||||
|
humanDescription:
|
||||||
|
serializedVersion: 3
|
||||||
|
human: []
|
||||||
|
skeleton: []
|
||||||
|
armTwist: 0.5
|
||||||
|
foreArmTwist: 0.5
|
||||||
|
upperLegTwist: 0.5
|
||||||
|
legTwist: 0.5
|
||||||
|
armStretch: 0.05
|
||||||
|
legStretch: 0.05
|
||||||
|
feetSpacing: 0
|
||||||
|
globalScale: 1
|
||||||
|
rootMotionBoneName:
|
||||||
|
hasTranslationDoF: 0
|
||||||
|
hasExtraRoot: 0
|
||||||
|
skeletonHasParents: 1
|
||||||
|
lastHumanDescriptionAvatarSource: {instanceID: 0}
|
||||||
|
autoGenerateAvatarMappingIfUnspecified: 1
|
||||||
|
animationType: 2
|
||||||
|
humanoidOversampling: 1
|
||||||
|
avatarSetup: 0
|
||||||
|
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
|
||||||
|
importBlendShapeDeformPercent: 1
|
||||||
|
remapMaterialsIfMaterialImportModeIsNone: 0
|
||||||
|
additionalBone: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
|
@ -1 +1 @@
|
||||||
2024-07-25T14:52:04.4041360Z
|
2024-07-30T14:39:51.6019080Z
|
File diff suppressed because it is too large
Load Diff
|
@ -14,6 +14,7 @@ TagManager:
|
||||||
- Weisswein
|
- Weisswein
|
||||||
- Olivenoel
|
- Olivenoel
|
||||||
- Wasser
|
- Wasser
|
||||||
|
- Loeffel
|
||||||
layers:
|
layers:
|
||||||
- Default
|
- Default
|
||||||
- TransparentFX
|
- TransparentFX
|
||||||
|
|
Loading…
Reference in New Issue