Skip to content

Commit

Permalink
Re add missing AI predicate axis.
Browse files Browse the repository at this point in the history
  • Loading branch information
Damnae committed Feb 1, 2024
1 parent b79a054 commit 5307dfa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/gamecore/tasks/AIDecisionConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,18 @@
const node = props.node as unknown as
{
DecisionName:string
ScoreEvaluatorType:string
ConsiderAxisList:GamecoreTask[]
RootTask:GamecoreTask
}
</script>

<template>
<BlockLayout :source="node">

Decision <em>{{ node.DecisionName }}</em>
Decision <em>{{ node.DecisionName }}</em> <span class="minor">({{ node.ScoreEvaluatorType }})</span>
<template #content>
<AnyTask v-for="axis in node.ConsiderAxisList" :node="axis" />
<AnyTask :node="node.RootTask" />
</template>

Expand Down

0 comments on commit 5307dfa

Please sign in to comment.