square_speech_balloon 0.0.28 → 0.0.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,6 +25,10 @@ module SquareSpeechBalloon
|
|
25
25
|
|
26
26
|
module BalloonModule
|
27
27
|
|
28
|
+
def parsed_settings
|
29
|
+
@parsed_settings ||= get_speech_balloon.speech_balloon_template.parsed_settings
|
30
|
+
end
|
31
|
+
|
28
32
|
def supply_default
|
29
33
|
s = self.parsed_settings['all']['balloon']
|
30
34
|
self.x = 0
|
@@ -56,6 +60,10 @@ module SquareSpeechBalloon
|
|
56
60
|
|
57
61
|
module SpeechModule
|
58
62
|
|
63
|
+
def parsed_settings
|
64
|
+
@parsed_settings ||= get_speech_balloon.speech_balloon_template.parsed_settings
|
65
|
+
end
|
66
|
+
|
59
67
|
def supply_default
|
60
68
|
s = self.parsed_settings['all']['speech']
|
61
69
|
self.x = s['x_rate']
|