circle_speech_balloon 0.0.52 → 0.0.53
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.
@@ -30,7 +30,7 @@ module CircleSpeechBalloon
|
|
30
30
|
end
|
31
31
|
|
32
32
|
module BalloonModule
|
33
|
-
def supply_default
|
33
|
+
def supply_default
|
34
34
|
s = self.parsed_settings['all']['balloon']
|
35
35
|
self.x = 0
|
36
36
|
self.y = 0
|
@@ -41,14 +41,14 @@ module CircleSpeechBalloon
|
|
41
41
|
|
42
42
|
def balloon_extend
|
43
43
|
self.new_balloon unless @balloon_extend
|
44
|
-
@balloon_extend
|
44
|
+
@balloon_extend
|
45
45
|
end
|
46
46
|
|
47
47
|
def balloon_extend= params
|
48
48
|
@balloon_extend = CircleSpeechBalloon::Balloon.new params
|
49
49
|
end
|
50
50
|
|
51
|
-
def
|
51
|
+
def new_balloon params = {}
|
52
52
|
@balloon_extend = CircleSpeechBalloon::Balloon.new params
|
53
53
|
@balloon_extend.supply_default
|
54
54
|
end
|
@@ -73,7 +73,7 @@ module CircleSpeechBalloon
|
|
73
73
|
end
|
74
74
|
|
75
75
|
module SpeechModule
|
76
|
-
def supply_default
|
76
|
+
def supply_default
|
77
77
|
s = self.parsed_settings['0']['speech']
|
78
78
|
self.x = s['x_rate']
|
79
79
|
self.y = s['y_rate']
|
@@ -87,7 +87,7 @@ module CircleSpeechBalloon
|
|
87
87
|
|
88
88
|
def speech_extend
|
89
89
|
self.new_speech unless @speech_extend
|
90
|
-
@speech_extend
|
90
|
+
@speech_extend
|
91
91
|
end
|
92
92
|
|
93
93
|
def speech_extend= params
|