Skip to content

Commit

Permalink
Merge branch 'main' into Party-Time
Browse files Browse the repository at this point in the history
  • Loading branch information
CansyLand committed Sep 25, 2023
2 parents 15b6721 + 150240c commit 75d52c8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion beer-dispenser/src/modules/beerGlass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ export function pickingGlassSystem() {
})

AvatarAttach.create(parentBeer, {
avatarId: currentPlayerId,
anchorPointId: AvatarAnchorPointType.AAPT_RIGHT_HAND
})
Transform.createOrReplace(entity, {
Expand Down
4 changes: 2 additions & 2 deletions cube-wave-16x16/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function main() {
}
}

const sign = engine.addEntity(true)
const sign = engine.addEntity()
Transform.create(sign, {
position: { x: 8, y: 6, z: 8 },
scale: { x: 1.2, y: 1.2, z: 1.2 }
Expand All @@ -33,7 +33,7 @@ engine.addSystem(CircleHoverSystem)
// My cube generator
function createCube(x: number, y: number, z: number) {
// Dynamic entity because we aren't loading static entities out of this scene code
const myEntity = engine.addEntity(true)
const myEntity = engine.addEntity()

Transform.create(myEntity, {
position: { x, y, z }
Expand Down
4 changes: 2 additions & 2 deletions cube-wave-32x32/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function main() {
}
}

const sign = engine.addEntity(true)
const sign = engine.addEntity()
Transform.create(sign, {
position: { x: 8, y: 6, z: 8 },
scale: { x: 1.2, y: 1.2, z: 1.2 }
Expand All @@ -33,7 +33,7 @@ engine.addSystem(CircleHoverSystem)
// My cube generator
function createCube(x: number, y: number, z: number) {
// Dynamic entity because we aren't loading static entities out of this scene code
const myEntity = engine.addEntity(true)
const myEntity = engine.addEntity()

Transform.create(myEntity, {
position: { x, y, z },
Expand Down
2 changes: 1 addition & 1 deletion scene-bounds-check/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export function main() {
setAsMovingPlatform(audioSourceEntity, [Vector3.create(24, 1, -31), Vector3.create(24, 1, -33)], 10)

// TEXT SHAPE
const textShapeEntity = engine.addEntity(true)
const textShapeEntity = engine.addEntity()
TextShape.create(textShapeEntity, {
text: 'IA IA CTHULHU FHTAGN!',
fontSize: 2
Expand Down

0 comments on commit 75d52c8

Please sign in to comment.