Optmi behavior list style
This commit is contained in:
parent
8dcbfbefb0
commit
14dbd944f9
@ -12,6 +12,7 @@ div.behavior-list {
|
||||
height: 45px;
|
||||
user-select: none;
|
||||
border-radius: 3px;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
|
||||
div.behavior-color-view {
|
||||
@ -19,12 +20,14 @@ div.behavior-list {
|
||||
width: 100%;
|
||||
|
||||
div {
|
||||
position: relative;
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 8px;
|
||||
// position: relative;
|
||||
// top: 5px;
|
||||
// left: 5px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
// border-left: 8px solid red;
|
||||
border-bottom: 12px solid transparent;
|
||||
// border-radius: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -113,7 +113,7 @@ class BehaviorList extends Component<IBehaviorListProps & IMixinSettingProps> {
|
||||
}}
|
||||
>
|
||||
<div className="behavior-color-view">
|
||||
<div style={{ backgroundColor: color }}/>
|
||||
<div style={{ borderLeft: `12px solid ${color}` }}/>
|
||||
</div>
|
||||
<div className="behavior-item-root">
|
||||
<div className="behavior-icon-view">
|
||||
|
@ -69,8 +69,7 @@ class Actuator extends Emitter<IActuatorEvent> {
|
||||
// 丢帧判定
|
||||
if (durTime > 0.1) {
|
||||
console.log("Actuator: Ticker dur time error. dropping...")
|
||||
}
|
||||
|
||||
} else {
|
||||
this.alignTimer += durTime;
|
||||
if (this.alignTimer > (1 / this.fps)) {
|
||||
this.model.update(this.alignTimer * this.speed);
|
||||
@ -78,6 +77,7 @@ class Actuator extends Emitter<IActuatorEvent> {
|
||||
this.alignTimer = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
this.emit("loop", Infinity);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user