Compare commits
3 Commits
a40bbd7cf6
...
cc07f6a03c
Author | SHA1 | Date | |
---|---|---|---|
cc07f6a03c | |||
5176a1f672 | |||
f020e44f47 |
@ -40,8 +40,6 @@ div.behavior-list {
|
||||
z-index: 1;
|
||||
|
||||
div.behavior-popup-layout {
|
||||
transition: opacity 150ms cubic-bezier(0, 0, 1, 1),
|
||||
width 220ms cubic-bezier(.1, .9, .2, 1);
|
||||
width: 0;
|
||||
opacity: 0;
|
||||
height: 100%;
|
||||
|
26
source/Component/BehaviorPicker/BehaviorPicker.scss
Normal file
26
source/Component/BehaviorPicker/BehaviorPicker.scss
Normal file
@ -0,0 +1,26 @@
|
||||
|
||||
div.behavior-picker-list {
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
|
||||
div.behavior-picker-line {
|
||||
width: 100%;
|
||||
padding: 0 !important;
|
||||
display: flex !important;
|
||||
justify-content: flex-start !important;
|
||||
|
||||
div.behavior-picker-line-color-view {
|
||||
width: 0;
|
||||
max-width: 0;
|
||||
height: 100%;
|
||||
|
||||
div {
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-bottom: 10px solid transparent;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
49
source/Component/BehaviorPicker/BehaviorPicker.tsx
Normal file
49
source/Component/BehaviorPicker/BehaviorPicker.tsx
Normal file
@ -0,0 +1,49 @@
|
||||
import { DetailsList } from "@Component/DetailsList/DetailsList";
|
||||
import { Component, ReactNode } from "react";
|
||||
import { Behavior } from "@Model/Behavior";
|
||||
import "./BehaviorPicker.scss";
|
||||
|
||||
interface IBehaviorPickerProps {
|
||||
behavior: Behavior[]
|
||||
}
|
||||
|
||||
class BehaviorPicker extends Component<IBehaviorPickerProps> {
|
||||
|
||||
private getData() {
|
||||
let data: Array<{key: string, behavior: Behavior}> = [];
|
||||
for (let i = 0; i < this.props.behavior.length; i++) {
|
||||
data.push({
|
||||
key: this.props.behavior[i].id,
|
||||
behavior: this.props.behavior[i]
|
||||
})
|
||||
}
|
||||
return data;
|
||||
}
|
||||
|
||||
private renderColor(color: string): ReactNode {
|
||||
return <div className="behavior-picker-line-color-view">
|
||||
<div style={{ borderLeft: `10px solid ${color}` }}/>
|
||||
</div>
|
||||
}
|
||||
|
||||
private renderLine = (behavior: Behavior): ReactNode => {
|
||||
return <>
|
||||
{this.renderColor(behavior.color)}
|
||||
</>;
|
||||
}
|
||||
|
||||
public render(): ReactNode {
|
||||
return <DetailsList
|
||||
hideCheckBox
|
||||
className="behavior-picker-list"
|
||||
items={this.getData()}
|
||||
columns={[{
|
||||
className: "behavior-picker-line",
|
||||
key: "behavior",
|
||||
render: this.renderLine
|
||||
}]}
|
||||
/>
|
||||
}
|
||||
}
|
||||
|
||||
export { BehaviorPicker };
|
@ -77,10 +77,14 @@ class BehaviorPopupComponent extends Component<
|
||||
private renderBehaviors = (behaviors: ICategoryBehavior, first: boolean) => {
|
||||
|
||||
let language = this.props.setting?.language ?? "EN_US";
|
||||
let filterReg: RegExp | undefined = undefined;
|
||||
if (this.state.searchValue) {
|
||||
filterReg = new RegExp(this.state.searchValue, "i");
|
||||
}
|
||||
let filterItem = behaviors.item.filter((item) => {
|
||||
let name = item.getTerms(item.behaviorName, this.props.setting?.language);
|
||||
if (this.state.searchValue) {
|
||||
return name.includes(this.state.searchValue);
|
||||
if (filterReg) {
|
||||
return filterReg.test(name);
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
|
@ -40,6 +40,9 @@ class HeaderBar extends Component<
|
||||
|
||||
private createFpsCalc(type: "renderFps" | "physicsFps") {
|
||||
return (t: number) => {
|
||||
if (t === 0) {
|
||||
return;
|
||||
}
|
||||
let newState: HeaderBarState = {} as any;
|
||||
newState[type] = 1 / t;
|
||||
if (this.updateTime > 20) {
|
||||
|
@ -69,6 +69,7 @@ const EN_US = {
|
||||
"Common.Attr.Title.Basic": "Basic properties",
|
||||
"Common.Attr.Title.Spatial": "Spatial property",
|
||||
"Common.Attr.Title.Individual.Generation": "Individual generation",
|
||||
"Common.Attr.Title.Behaviors": "Behaviors list",
|
||||
"Common.Attr.Title.Individual.kill": "Individual kill",
|
||||
"Common.Attr.Key.Display.Name": "Display name",
|
||||
"Common.Attr.Key.Position.X": "Position X",
|
||||
|
@ -69,6 +69,7 @@ const ZH_CN = {
|
||||
"Common.Attr.Title.Basic": "基础属性",
|
||||
"Common.Attr.Title.Spatial": "空间属性",
|
||||
"Common.Attr.Title.Individual.Generation": "生成个体",
|
||||
"Common.Attr.Title.Behaviors": "行为列表",
|
||||
"Common.Attr.Title.Individual.kill": "消除个体",
|
||||
"Common.Attr.Key.Display.Name": "显示名称",
|
||||
"Common.Attr.Key.Position.X": "X 坐标",
|
||||
|
@ -11,6 +11,7 @@ import { AllI18nKeys } from "@Component/Localization/Localization";
|
||||
import { ComboInput, IDisplayItem } from "@Component/ComboInput/ComboInput";
|
||||
import { ObjectPicker } from "@Component/ObjectPicker/ObjectPicker";
|
||||
import { ConfirmPopup } from "@Component/ConfirmPopup/ConfirmPopup";
|
||||
import { BehaviorPicker } from "@Component/BehaviorPicker/BehaviorPicker";
|
||||
import "./GroupDetails.scss";
|
||||
|
||||
interface IGroupDetailsProps {}
|
||||
@ -107,6 +108,12 @@ class GroupDetails extends Component<IGroupDetailsProps & IMixinStatusProps> {
|
||||
}
|
||||
}}
|
||||
/>
|
||||
|
||||
<Message i18nKey="Common.Attr.Title.Behaviors" isTitle/>
|
||||
|
||||
<BehaviorPicker
|
||||
behavior={group.behaviors}
|
||||
/>
|
||||
|
||||
<Message i18nKey="Common.Attr.Title.Individual.Generation" isTitle/>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user