style fixes

This commit is contained in:
2016-09-10 18:22:59 +07:00
parent a5c9d21b66
commit 5bce0db290
3 changed files with 3 additions and 12 deletions

View File

@@ -85,12 +85,6 @@ namespace FlashTools.Internal {
.ToArray();
}
//
//
//
//
//
//
@@ -128,9 +122,7 @@ namespace FlashTools.Internal {
// ---------------------------------------------------------------------
void OnEnable() {
_clips = targets
.OfType<SwfClipAsset>()
.ToList();
_clips = targets.OfType<SwfClipAsset>().ToList();
}
public override void OnInspectorGUI() {

View File

@@ -42,9 +42,7 @@ namespace FlashTools.Internal {
// ---------------------------------------------------------------------
void OnEnable() {
_controllers = targets
.OfType<SwfClipController>()
.ToList();
_controllers = targets.OfType<SwfClipController>().ToList();
}
public override void OnInspectorGUI() {

View File

@@ -143,6 +143,7 @@ namespace FlashTools {
var clip_sequence = clip.Sequences[i];
if ( clip_sequence != null && clip_sequence.Name == sequence ) {
_curSequence = clip_sequence;
break;
}
}
if ( _curSequence == null ) {