Changeset 122 in tmcsimulator-scriptbuilder for trunk/src/scriptbuilder/structures/ScriptIncident.java


Ignore:
Timestamp:
09/19/2017 02:15:02 PM (9 years ago)
Author:
bmcguffin
Message:

Added message panel warning user, if the first event placed in an incident is placed at a time other than 00:00:00, that the event will be moved to time 00:00:00 relative to the start of the incident.

Commented out code in ScriptIncident?.addNewEvent which rounds event start times to the nearest minute. I need to find a better solution which doesn't damage the program's ability to accurately generate scripts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/scriptbuilder/structures/ScriptIncident.java

    r120 r122  
    188188    public void addNewEvent(I_ScriptEvent ev, int start) 
    189189    { 
     190        /* 
    190191        int leftoverSeconds = start % 60; 
    191192         
     
    202203            } 
    203204        } 
     205        */ 
    204206         
    205207        //Check to see if there's already a timeslice here 
Note: See TracChangeset for help on using the changeset viewer.