Changeset 167 in tmcsimulator-scriptbuilder for trunk/src/scriptbuilder/structures/events
- Timestamp:
- 12/16/2019 03:55:46 PM (6 years ago)
- Location:
- trunk/src/scriptbuilder/structures/events
- Files:
-
- 3 edited
-
AudioEvent.java (modified) (2 diffs)
-
CHPRadioEvent.java (modified) (1 diff)
-
I_AudioEvent.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/scriptbuilder/structures/events/AudioEvent.java
r161 r167 44 44 45 45 /** 46 * File path for the audio file. 46 * File path for the audio file. Perhaps should only be generated on save? 47 47 */ 48 48 public String audioPath = ""; … … 64 64 audioPath = "audio/" + f + ".mp3"; 65 65 } 66 66 /** 67 * sets audio path relative to the working directory using the id value. 68 */ 67 69 public void setAudioFilePathRelative() 68 70 { -
trunk/src/scriptbuilder/structures/events/CHPRadioEvent.java
r161 r167 78 78 79 79 @Override 80 public void setID(String id) 81 { 82 this.id = id; 83 } 84 85 @Override 80 86 public void setFileName(String s) 81 87 { -
trunk/src/scriptbuilder/structures/events/I_AudioEvent.java
r159 r167 11 11 */ 12 12 public interface I_AudioEvent { 13 /**14 * allows for the AudioEvent type to return if it is an audio event. Could be replaced by just using instanceOf I think15 * @return16 */17 13 18 14 … … 21 17 String getID(); 22 18 19 void setID(String id); 20 23 21 void setFileName(String s); 24 22
Note: See TracChangeset
for help on using the changeset viewer.
