Skip to content

Commit

Permalink
IMP Docの書き方を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
EllaCoat committed Aug 23, 2024
1 parent 0558e09 commit 3b740f0
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 15 deletions.
24 changes: 17 additions & 7 deletions Asset/data/asset/functions/mob/0391.axia_first/load.mcfunction
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,25 @@

#> 定義類はここに
# @within function asset:mob/0391.axia_first/**
scoreboard objectives add AV.AnimationTick dummy
scoreboard objectives add AV.AnimationNum dummy
scoreboard objectives add AV.ProjectileTick dummy
scoreboard objectives add AV.UUID dummy
scoreboard objectives add AV.FalterCount dummy

# AnimationTick
# Animationがどれくらいの時間経過したかを記録するスコア
scoreboard objectives add AV.AnimationTick dummy

# AnimationNum
# どのAnimationが実行されているかを記録するスコア
# 10の位 : Animationの種類
# 1の位 : Animation番号
scoreboard objectives add AV.AnimationNum dummy

# ProjectileTick
# 弾幕用Tick
scoreboard objectives add AV.ProjectileTick dummy
# UUIDやUserID保存用のスコア
scoreboard objectives add AV.UUID dummy
# 怯みカウント
scoreboard objectives add AV.FalterCount dummy

# UUID
# UUIDやUserID保存用のスコア

# FalterCount
# 怯みカウント
25 changes: 17 additions & 8 deletions Asset/data/asset/functions/mob/0392.ecual_first/load.mcfunction
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,25 @@

#> 定義類はここに
# @within function asset:mob/0392.ecual_first/**
scoreboard objectives add AW.AnimationTick dummy
scoreboard objectives add AW.AnimationNum dummy
scoreboard objectives add AW.ProjectileTick dummy
scoreboard objectives add AW.UUID dummy
scoreboard objectives add AW.FalterCount dummy

# AnimationTick
# Animationがどれくらいの時間経過したかを記録するスコア
scoreboard objectives add AW.AnimationTick dummy

# AnimationNum
# どのAnimationが実行されているかを記録するスコア
# 10の位 : Animationの種類
# 1の位 : Animation番号
scoreboard objectives add AW.AnimationNum dummy

# ProjectileTick
# 弾幕用Tick
scoreboard objectives add AW.ProjectileTick dummy
# UUIDやUserID保存用のスコア
scoreboard objectives add AW.UUID dummy
# 怯みカウント
scoreboard objectives add AW.FalterCount dummy

# UUID
# UUIDやUserID保存用のスコア

# FalterCount
# 怯みカウント

0 comments on commit 3b740f0

Please sign in to comment.