()
| 1158 | } |
| 1159 | |
| 1160 | func (sc *SoundContents) TogglePlayback() { |
| 1161 | |
| 1162 | if sc.Resource == nil || sc.Sound == nil { |
| 1163 | return |
| 1164 | } |
| 1165 | |
| 1166 | if sc.Sound.IsPaused() { |
| 1167 | sc.Sound.Play() |
| 1168 | sc.Playing = true |
| 1169 | } else { |
| 1170 | sc.Sound.Pause() |
| 1171 | sc.Playing = false |
| 1172 | } |
| 1173 | |
| 1174 | } |
| 1175 | |
| 1176 | func (sc *SoundContents) StopPlayback() { |
| 1177 |
no test coverage detected